From: hickert Date: Wed, 17 Jan 2007 10:15:21 +0000 (+0000) Subject: Removed htmlentities for smarty vars - It seams that htmlentities will not work with äöü X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f6c26702d2c36b82b8e881786a9b00f677e61ced;p=gosa.git Removed htmlentities for smarty vars - It seams that htmlentities will not work with äöü git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5581 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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); } }