X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_SnapShotDialog.inc;h=34967053c52776f40c16b815cc06837ba808542e;hb=48255345960f314a5b5fd54d57572ce65ea31345;hp=4d44f0b708e5983a162d5c55e9488db3e28a289a;hpb=b57c77d36fbcf682603db5e7c247d2b6ff6ccee2;p=gosa.git diff --git a/include/class_SnapShotDialog.inc b/include/class_SnapShotDialog.inc index 4d44f0b70..34967053c 100755 --- a/include/class_SnapShotDialog.inc +++ b/include/class_SnapShotDialog.inc @@ -4,14 +4,15 @@ class SnapShotDialog extends plugin { var $config; - var $attributes = array("CurrentDescription"); - var $CurrentDescription = ""; - var $parent = NULL; - var $display_restore_dialog = false; /* Defines the restore mode */ - var $display_all_removed_objects= false; /* Specifies which objects will be listed, all snapshots for a single entry - or all snapshots of already deleted objects */ - var $dialog = true; - var $del_dn = ""; + var $attributes= array("CurrentDescription"); + var $CurrentDescription= ""; + var $parent= NULL; + var $display_restore_dialog= false; /* Defines the restore mode */ + var $display_all_removed_objects= false; /* Specifies which objects will be listed, all + snapshots for a single entry or all snapshots + of already deleted objects */ + var $dialog= true; + var $del_dn= ""; var $ui; var $acl; @@ -100,12 +101,12 @@ class SnapShotDialog extends plugin /* Add Elements to divlist */ foreach($list_of_elements as $entry){ - $actions = " "; - $actions.= " "; + $actions.= " "; - $time_stamp = date("d.m.Y H.i.s",preg_replace("/\-.*$/","",$entry['gosaSnapshotTimestamp'][0])); + $time_stamp = date(_("Y-m-d, H:i:s"),preg_replace("/\-.*$/","",$entry['gosaSnapshotTimestamp'][0])); $display_data = $entry['description'][0]; if($this->display_all_removed_objects){ @@ -125,7 +126,7 @@ class SnapShotDialog extends plugin $smarty->assign("restore_deleted",$this->display_all_removed_objects); $smarty->assign("RestoreMode",$this->display_restore_dialog); - $smarty->assign("CurrentDate",date("d.m.Y H:i")); + $smarty->assign("CurrentDate",date(_("Y-m-d, H:i:s"))); $smarty->assign("CurrentDN",$this->dn); $smarty->assign("CurrentDescription",$this->CurrentDescription); return($smarty->fetch(get_template_path("snapshotdialog.tpl"))); @@ -155,4 +156,5 @@ class SnapShotDialog extends plugin } } +// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>