From: hickert Date: Fri, 23 Jul 2010 09:34:13 +0000 (+0000) Subject: Fixed post handling. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8d69de550a68bebc23766941a7183ae42b17655f;p=gosa.git Fixed post handling. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19068 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc index f882842f6..4750a12fc 100644 --- a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc +++ b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc @@ -22,30 +22,30 @@ class DaemonEvent_recreate_fai_release_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 release db"); - $this->s_Event_Name = _("Reload fai release db"); - $this->s_Schedule_Action= "gosa_recreate_fai_release_db"; - $this->s_Trigger_Action = "gosa_recreate_fai_release_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 release db"); + $this->s_Event_Name = _("Reload fai release db"); + $this->s_Schedule_Action= "gosa_recreate_fai_release_db"; + $this->s_Trigger_Action = "gosa_recreate_fai_release_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: ?>