Code

Removed htmlentities for smarty vars - It seams that htmlentities will not work with äöü
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Jan 2007 10:15:21 +0000 (10:15 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Jan 2007 10:15:21 +0000 (10:15 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5581 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/fai/class_faiHookEntry.inc

index c73d2e886a54b9820edeac61c0aa99266349e588..9c3577f591f379a422dbb729970068544fa44dea 100644 (file)
@@ -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);
       }
     }