From 30aa0891b8ef7204b899d90bf3757a5a1881d044 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Thu, 01 Nov 2007 16:54:45 -0400
Subject: [PATCH] - Enhanced the installation guides - added a daily cronjob for stats creation in the installer. - Fixed a bug in the spamfilter white / blacklist forms (thanks to satommy for reporting this) - fixed ssl cert path in vhost templates/web_domain_ssl.htm - fixed a bug in the apache plugin which prevented the copying of the standard error and index files.

---
 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