Code

Updated
[gosa.git] / plugins / admin / fai / class_faiScriptEntry.inc
index cb4fce3b625ac342146fe41956efd32ec4833308..3d6ad9eb92e29304af1b11edffdebe10161bdd5d 100644 (file)
@@ -41,6 +41,7 @@ class faiScriptEntry extends plugin
   {
        /* Call parent execute */
        plugin::execute();
+
     /* Fill templating stuff */
     $smarty     = get_smarty();
     $display = "";
@@ -52,11 +53,10 @@ class faiScriptEntry extends plugin
       if(($_FILES['ImportFile']['size']==0)){
         print_red(_("Selected file is empty."));
       }else{
-        $str = utf8_encode(file_get_contents($_FILES['ImportFile']['tmp_name']));
+        $str = utf8_encode(addslashes(file_get_contents($_FILES['ImportFile']['tmp_name'])));
         $this->FAIscript = $str;
       }
     }
-
   
     foreach($this->attributes as $attrs){
       if(get_magic_quotes_gpc()){