From 4132c6b6a32adb508144532dcfa5e650f144bf53 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 23 Oct 2007 15:02:19 -0400
Subject: [PATCH] Improved ssh user and apache plugin.
---
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