[geeklog-cvs] geeklog: Missing semicolon after  

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Jul 25 18:25:29 EDT 2009


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/caabae3fddb6
changeset: 7188:caabae3fddb6
user:      Dirk Haun <dirk at haun-online.de>
date:      Sat Jul 25 22:55:01 2009 +0200
description:
Missing semicolon after  

diffstat:

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

diffs (17 lines):

diff -r f13664e1db74 -r caabae3fddb6 public_html/lib-common.php
--- a/public_html/lib-common.php	Sat Jul 25 19:51:49 2009 +0200
+++ b/public_html/lib-common.php	Sat Jul 25 22:55:01 2009 +0200
@@ -6954,11 +6954,11 @@
     // only now remove all HTML tags
     $text = strip_tags($text);
 
-    // replace all tabs, newlines,  and carrriage returns with spaces
+    // replace all tabs, newlines, and carrriage returns with spaces
     $text = str_replace(array("\011", "\012", "\015"), ' ', $text);
 
     // replace entities with plain spaces
-    $text = str_replace(array('', '&#160', ' '), ' ', $text);
+    $text = str_replace(array('', ' ', ' '), ' ', $text);
 
     // collapse whitespace
     $text = preg_replace('/\s\s+/', ' ', $text);



More information about the geeklog-cvs mailing list