From: SourceForge.net <no...@so...> - 2007-11-09 21:27:17
|
/mod/quotes item #1249482, was opened at 2005-08-01 07:04 Message generated for change (Comment added) made by grizzly-adams You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681719&aid=1249482&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Harry Rarig (rarig) Assigned to: Nobody/Anonymous (nobody) Summary: If quote contains an italic, it is displayed as \' Initial Comment: 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 ---------------------------------------------------------------------- Comment By: grizzly adams (grizzly-adams) Date: 2007-11-09 15:27 Message: 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); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681719&aid=1249482&group_id=81360 |