Top manufactored dashboard shows wrong statistics. Fixed
[fa-stable.git] / includes / JsHttpRequest.php
index 78b0b2ce7e88a28933f26eb5fcc2f75f542c591d..f71c0ed236075c0bd5a53cf1e3f145718d3f1fcf 100644 (file)
@@ -187,7 +187,7 @@ class JsHttpRequest
         if ($this->SCRIPT_DECODE_MODE == 'entities')
             return str_replace(array('"', '<', '>'), array('&quot;', '&lt;', '&gt;'), $s);
         else
-            return htmlspecialchars($s);
+            return html_specials_encode($s);
     }