From a9b377bfda58641b10ec135300fa3d8d395a8e66 Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 23 Jul 2010 09:34:15 +0000 Subject: [PATCH] Fixed post handling. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19069 594d385d-05f5-0310-b6e9-bd551577e9d8 --- ...ass_DaemonEvent_recreate_fai_server_db.inc | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_server_db.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_server_db.inc index 647d9af0a..681eca2f1 100644 --- a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_server_db.inc +++ b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_server_db.inc @@ -22,30 +22,30 @@ class DaemonEvent_recreate_fai_server_db extends DaemonEvent { - var $visible_for = HIDDEN_EVENT; + var $visible_for = HIDDEN_EVENT; - public function __construct($config,$data = array()) - { - DaemonEvent::__construct($config,$data); - $this->s_Menu_Name = _("Reload fai server db"); - $this->s_Event_Name = _("Reload fai server db"); - $this->s_Schedule_Action= "gosa_recreate_fai_server_db"; - $this->s_Trigger_Action = "gosa_recreate_fai_server_db"; - $this->s_Queued_Action = "recreate_fai_release_db"; - $this->s_Menu_Image = "images/edit.png"; - $this->s_List_Image = "images/edit.png"; - } + public function __construct($config,$data = array()) + { + DaemonEvent::__construct($config,$data); + $this->s_Menu_Name = _("Reload fai server db"); + $this->s_Event_Name = _("Reload fai server db"); + $this->s_Schedule_Action= "gosa_recreate_fai_server_db"; + $this->s_Trigger_Action = "gosa_recreate_fai_server_db"; + $this->s_Queued_Action = "recreate_fai_release_db"; + $this->s_Menu_Image = "images/edit.png"; + $this->s_List_Image = "images/edit.png"; + } - public function execute() - { - DaemonEvent::execute(); - return("Cannot be displayed"); - } + public function execute() + { + DaemonEvent::execute(); + return("Cannot be displayed"); + } - public function save_object() - { - DaemonEvent::save_object(); - } + public function save_object() + { + DaemonEvent::save_object(); + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> -- 2.30.2