X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_SnapShotDialog.inc;h=315e9b451f8e1cb9922c68018de478cde6595a51;hb=1e99420f077c6595a6098da8b0685a852668852f;hp=471fc187b51fbeb16ee0aa21d0138c748c0bc5bc;hpb=d3bb314b1fb17e53abfa5edfdbc786f759039a26;p=gosa.git diff --git a/gosa-core/include/class_SnapShotDialog.inc b/gosa-core/include/class_SnapShotDialog.inc index 471fc187b..315e9b451 100644 --- a/gosa-core/include/class_SnapShotDialog.inc +++ b/gosa-core/include/class_SnapShotDialog.inc @@ -90,18 +90,12 @@ class SnapShotDialog extends plugin if($found){ $this->del_dn = $entry; $smarty= get_smarty(); - $smarty->assign("info", sprintf(_("You're about to delete the snapshot '%s'."), LDAP::fix($this->del_dn))); - return($smarty->fetch (get_template_path('removeEntries.tpl'))); + $smarty->assign("info", sprintf(_("You are about to delete the snapshot %s."), bold(LDAP::fix($this->del_dn)))); + 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){ @@ -143,7 +137,7 @@ class SnapShotDialog extends plugin $data = $lData = array(); foreach($list_of_elements as $entry){ $actions= image('images/lists/restore.png','RestoreSnapShot_%KEY',_("Restore snapshot")); - $actions.= image('images/lists/trash.png','RemoveSnapShot_%KEY',_("Remove snapshot")); + $actions.= image('images/lists/trash.png','RemoveSnapShot_%KEY',_("Delete snapshot")); $time_stamp = date(_("Y-m-d, H:i:s"),preg_replace("/\-.*$/","",$entry['gosaSnapshotTimestamp'][0])); $display_data = $entry['description'][0]; $data[$entry['dn']] = $entry; @@ -156,7 +150,7 @@ class SnapShotDialog extends plugin $this->snapList->setListData($data, $lData); $this->snapList->update(); - $smarty->assign("SnapShotDivlist",$this->snapList->render()); + $smarty->assign("SnapShotList",$this->snapList->render()); $smarty->assign("CountSnapShots",count($list_of_elements)); } @@ -183,7 +177,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]);