summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d5a2cfd)
raw | patch | inline | side by side (parent: d5a2cfd)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Jul 2010 13:19:57 +0000 (13:19 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Jul 2010 13:19:57 +0000 (13:19 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19248 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_SnapShotDialog.inc | patch | blob | history |
diff --git a/gosa-core/include/class_SnapShotDialog.inc b/gosa-core/include/class_SnapShotDialog.inc
index 315d1525de8e90c3bb4b8e627b4a7a33c7471c5e..5b2b766465c19b1a856a29473f5a2cc3ad3cd37c 100644 (file)
$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);
$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")));
}
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);
}
}
}