|
From: <be...@us...> - 2014-03-27 10:15:32
|
Revision: 12412
http://sourceforge.net/p/xoops/svn/12412
Author: beckmi
Date: 2014-03-27 10:15:29 +0000 (Thu, 27 Mar 2014)
Log Message:
-----------
removing not needed escaping in function codeConvCallback
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.textsanitizer.php
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.textsanitizer.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.textsanitizer.php 2014-03-27 00:29:10 UTC (rev 12411)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.textsanitizer.php 2014-03-27 10:15:29 UTC (rev 12412)
@@ -678,7 +678,7 @@
*/
function codeConvCallback($match)
{
- return '<div class=\"xoopsCode\">'. $this->executeExtension('syntaxhighlight', str_replace('\\\"', '\"', base64_decode($match[2])), $match[1]).'</div>';
+ return '<div class="xoopsCode">'. $this->executeExtension('syntaxhighlight', str_replace('\\\"', '\"', base64_decode($match[2])), $match[1]).'</div>';
}
/**
|