When adding quotes that contain a single italic, e.g.
This is Alfred's quote, "What, me worry?"
It is displayed in the quotes module as
This is Alfred\'s quote: \"What, me worry?\"
Need to take out the annoying "\" when the quote is
displayed.
PhpWebSite: Rel 0.10.0
Quotes Module: Rel 0.2.1
Logged In: YES
user_id=1933823
Originator: NO
A fix to this is to update the showUserBox function in class/Quotes.php:
change the line
$tags["QUOTE"] = $this->_quote;
to read
$tags["QUOTE"] = stripslashes($this->_quote);