X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Ffai%2Fclass_faiVariableEntry.inc;h=44780047c8add96fad704f6aa30a5d4d81600586;hb=e51bd609d694c4708925f3ae3ca8556caabe7720;hp=d3a19ebbe5d01662672a429d3b9daa4bb466979c;hpb=6d616a278a0cdf88007b6b9ff320c29a8225837e;p=gosa.git diff --git a/plugins/admin/fai/class_faiVariableEntry.inc b/plugins/admin/fai/class_faiVariableEntry.inc index d3a19ebbe..44780047c 100644 --- a/plugins/admin/fai/class_faiVariableEntry.inc +++ b/plugins/admin/fai/class_faiVariableEntry.inc @@ -41,8 +41,15 @@ class faiVariableEntry extends plugin $smarty = get_smarty(); $display = ""; + /* Magic quotes GPC, escapes every ' " \, to solve some security risks + * If we post the escaped strings they will be escaped again + */ foreach($this->attributes as $attrs){ - $smarty->assign($attrs,stripslashes($this->$attrs)); + if(get_magic_quotes_gpc()){ + $smarty->assign($attrs,stripslashes($this->$attrs)); + }else{ + $smarty->assign($attrs,($this->$attrs)); + } } for($i =1 ; $i <= 100 ; $i++){ @@ -76,10 +83,6 @@ class faiVariableEntry extends plugin $message[]=_("Please specify a value for the attribute 'content'."); } - if(empty($this->Object_description)){ - $message[] = _("Please enter a description."); - } - if(empty($this->Object_cn)){ $message[] = _("Please enter a name."); }