From f6c26702d2c36b82b8e881786a9b00f677e61ced Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 17 Jan 2007 10:15:21 +0000 Subject: [PATCH] =?utf8?q?Removed=20htmlentities=20for=20smarty=20vars=20-?= =?utf8?q?=20It=20seams=20that=20htmlentities=20will=20not=20work=20with?= =?utf8?q?=20=C3=A4=C3=B6=C3=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5581 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/fai/class_faiHookEntry.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/admin/fai/class_faiHookEntry.inc b/plugins/admin/fai/class_faiHookEntry.inc index c73d2e886..9c3577f59 100644 --- a/plugins/admin/fai/class_faiHookEntry.inc +++ b/plugins/admin/fai/class_faiHookEntry.inc @@ -101,9 +101,9 @@ class faiHookEntry extends plugin */ foreach($this->attributes as $attrs){ if(get_magic_quotes_gpc()){ - $smarty->assign($attrs,htmlentities(stripslashes($this->$attrs))); + $smarty->assign($attrs,stripslashes($this->$attrs)); }else{ - $smarty->assign($attrs,htmlentities($this->$attrs)); + $smarty->assign($attrs,$this->$attrs); } } -- 2.30.2