From 03ade50f9f1826fbe3c21de9cc37fafb7aec8478 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Wed, 24 Oct 2007 12:06:38 -0400 Subject: [PATCH] Minor fixes in the installer for Ubuntu 7.10 --- server/plugins-enabled/shelluser_plugin.inc.php | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server/plugins-enabled/shelluser_plugin.inc.php b/server/plugins-enabled/shelluser_plugin.inc.php index b4967f8..9fa34aa 100644 --- a/server/plugins-enabled/shelluser_plugin.inc.php +++ b/server/plugins-enabled/shelluser_plugin.inc.php @@ -28,10 +28,10 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -class apache2_plugin { +class shelluser_plugin { - var $plugin_name = 'apache2_plugin'; - var $class_name = 'apache2_plugin'; + var $plugin_name = 'shelluser_plugin'; + var $class_name = 'shelluser_plugin'; /* @@ -45,9 +45,9 @@ Register for the events */ - $app->plugins->registerEvent('web_domain_insert',$this->plugin_name,'insert'); - $app->plugins->registerEvent('web_domain_update',$this->plugin_name,'update'); - $app->plugins->registerEvent('web_domain_delete',$this->plugin_name,'delete'); + $app->plugins->registerEvent('shell_user_insert',$this->plugin_name,'insert'); + $app->plugins->registerEvent('shell_user_update',$this->plugin_name,'update'); + $app->plugins->registerEvent('shell_user_delete',$this->plugin_name,'delete'); } -- Gitblit v1.9.1