Code

Prepared statistics to print password changes over time
[gosa.git] / gosa-core / include / class_SnapShotDialog.inc
index eca00222e5c659292037d028efc6488eeaf6386a..5b2b766465c19b1a856a29473f5a2cc3ad3cd37c 100644 (file)
@@ -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);
@@ -104,16 +105,18 @@ class SnapShotDialog extends plugin
                or the snapshots for the given object dn */
             $res = array();
             $tmp = array();
+            $handler = new SnapshotHandler($this->config);
+
             if($this->display_all_removed_objects){
                 if(count($this->snap_shot_bases)){
                     foreach($this->snap_shot_bases as $dn){
-                        $tmp = array_merge($tmp,$this->getAllDeletedSnapshots($dn,true));
+                        $tmp = array_merge($tmp,$handler->getAllDeletedSnapshots($dn,true));
                     }
                 }else{
-                    $tmp = $this->getAllDeletedSnapshots($this->snap_shot_bases,true);
+                    $tmp = $handler->getAllDeletedSnapshots($this->snap_shot_bases,true);
                 }
             }else{
-                $tmp = $this->Available_SnapsShots($this->dn,true);
+                $tmp = $handler->Available_SnapsShots($this->dn,true);
             }
 
             $this->snapList->setAcl('rwcdm');
@@ -158,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")));
     }
 
@@ -177,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);
             }
         }
     }