// Remove retrocompatibility stripslashes in ObjectModel

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11282 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-12-15 17:02:55 +00:00
parent 382bcb986b
commit 52df492c25

View File

@@ -201,9 +201,7 @@ abstract class ObjectModelCore
{
if (!is_array($this->{$key}))
$this->{$key} = array();
// @Todo: stripslashes() MUST BE removed in 1.4.6 and later, but is kept in 1.4.5 for a compatibility issue
$this->{$key}[$row['id_lang']] = stripslashes($value);
$this->{$key}[$row['id_lang']] = $value;
}
}
}