From 9521e2ca45f4f660c17f86d2679f2fb8b5995a90 Mon Sep 17 00:00:00 2001 From: rMalie Date: Thu, 15 Dec 2011 17:02:55 +0000 Subject: [PATCH] // Remove retrocompatibility stripslashes in ObjectModel --- classes/ObjectModel.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/classes/ObjectModel.php b/classes/ObjectModel.php index e8d5ceee4..2f65424b9 100644 --- a/classes/ObjectModel.php +++ b/classes/ObjectModel.php @@ -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; } } }