[geeklog-hg] geeklog: Fix for changeset b66d7e3ff622

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Tue Sep 10 12:14:39 EDT 2013


changeset 9290:4260be84d218
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/4260be84d218
user: dengen <taharaxp at gmail.com>
date: Wed Sep 11 01:14:18 2013 +0900
description:
Fix for changeset b66d7e3ff622

diffstat:

 public_html/lib-common.php |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (14 lines):

diff -r 847ef1a07b91 -r 4260be84d218 public_html/lib-common.php
--- a/public_html/lib-common.php	Wed Sep 11 01:08:49 2013 +0900
+++ b/public_html/lib-common.php	Wed Sep 11 01:14:18 2013 +0900
@@ -3952,8 +3952,10 @@
 */
 function COM_undoSpecialChars( $string )
 {
+    $string = str_replace( ''',  "'", $string );
     $string = str_replace( ''', "'", $string );
     $string = str_replace( '$',  '$', $string );
+    $string = str_replace( '$', '$', $string );
     $string = str_replace( '{', '{', $string );
     $string = str_replace( '}', '}', $string );
     $string = str_replace( '>',   '>', $string );



More information about the geeklog-cvs mailing list