esclfhtml: add space to nbsp conversion
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Tue, 10 Dec 2013 15:40:41 +0000 (16:40 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Tue, 10 Dec 2013 15:40:41 +0000 (16:40 +0100)
web/Obj/brisk.phh

index 2042aec..5fb98fb 100644 (file)
@@ -395,7 +395,7 @@ function eschtml($s)
 
 function esclfhtml($s)
 {
-    return str_replace("\n", "<br>", htmlspecialchars($s));
+    return str_replace(" ", "&nbsp;", str_replace("\n", "<br>", htmlspecialchars($s)));
 }
 
 function langtolng($lang)