X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_SnapShotDialog.inc;h=5b2b766465c19b1a856a29473f5a2cc3ad3cd37c;hb=f04b7b95f6468a806353f05cdd3faf97dd744d5c;hp=315d1525de8e90c3bb4b8e627b4a7a33c7471c5e;hpb=0eb61b9f93a61129c8a14be900aac58c57d7a5b2;p=gosa.git diff --git a/gosa-core/include/class_SnapShotDialog.inc b/gosa-core/include/class_SnapShotDialog.inc index 315d1525d..5b2b76646 100644 --- a/gosa-core/include/class_SnapShotDialog.inc +++ b/gosa-core/include/class_SnapShotDialog.inc @@ -75,6 +75,7 @@ class SnapShotDialog extends plugin $ui = get_userinfo(); $once = true; foreach($_POST as $name => $value){ + $value = get_post($name); if((preg_match("/^RemoveSnapShot_/",$name)) && ($once)){ $once = false; $entry = preg_replace("/^RemoveSnapShot_/","",$name); @@ -160,7 +161,7 @@ class SnapShotDialog extends plugin $smarty->assign("RestoreMode",$this->display_restore_dialog); $smarty->assign("CurrentDate",date(_("Y-m-d, H:i:s"))); $smarty->assign("CurrentDN",LDAP::fix($this->dn)); - $smarty->assign("CurrentDescription",$this->CurrentDescription); + $smarty->assign("CurrentDescription",set_post($this->CurrentDescription)); return($smarty->fetch(get_template_path("snapshotdialog.tpl"))); } @@ -179,10 +180,10 @@ class SnapShotDialog extends plugin function save_object() { -// plugin::save_object(); + // plugin::save_object(); foreach($this->attributes as $name){ if(isset($_POST[$name])){ - $this->$name = stripslashes($_POST[$name]); + $this->$name = get_post($name); } } }