[-] core : minor fix in Db->escape function to make it compatible to the phpdoc (2nd parameter html_ok is now optional)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12424 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2012-01-16 10:43:50 +00:00
parent 8ed9c8f807
commit d452c4dbf8
+1 -1
View File
@@ -558,7 +558,7 @@ abstract class DbCore
* @param boolean $html_ok Does data contain HTML code ? (optional)
* @return string Sanitized data
*/
public function escape($string, $html_ok)
public function escape($string, $html_ok = false)
{
if (_PS_MAGIC_QUOTES_GPC_)
$string = stripslashes($string);