alain91
alain91
if we give string like '&' as input the encode method returns '&' and not #||amp||# it seems that the replace is treated twice. What does this method as to...
Direct usage of mysql statements replace by Doctrine statements. `````` php --- a/htdocs/modules/protector/class/protector.php +++ b/htdocs/modules/protector/class/protector.php @@ -171,12 +171,13 @@ class Protector return false; } - $result = @mysql_query("SELECT conf_name,conf_value FROM...
Thereafter a patch to manage special character the same way than for an url : ``` haskell import Storage.URL( encString ) import Data.Char( isAlpha, isAscii, isDigit ) -- | Writes...