Code

Removed debug reload
[gosa.git] / gosa-core / include / class_SnapShotDialog.inc
index 0c56e49bdbf9b3c358aaab7475f83e8b09c502ef..315d1525de8e90c3bb4b8e627b4a7a33c7471c5e 100644 (file)
@@ -91,17 +91,11 @@ class SnapShotDialog extends plugin
                     $this->del_dn      = $entry;
                     $smarty= get_smarty();
                     $smarty->assign("info", sprintf(_("You are about to delete the snapshot %s."), bold(LDAP::fix($this->del_dn))));
-                    return($smarty->fetch (get_template_path('removeEntries.tpl')));
+                    return($smarty->fetch (get_template_path('removeSnapshots.tpl')));
                 }
             }
         }
 
-        /* Remove snapshot */
-        if(isset($_POST['delete_confirm']) && !empty($this->del_dn)){
-            $this->remove_snapshot($this->del_dn);
-            $this->del_dn = "";
-        }
-
         /* We must restore a snapshot */
 
         if($this->display_restore_dialog){
@@ -110,16 +104,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');
@@ -183,7 +179,7 @@ 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]);