From 1d8f7f155aadf209eaa4e0ca0805b428b9887b6a Mon Sep 17 00:00:00 2001
From: nveid <nveid@ispconfig3>
Date: Fri, 16 Dec 2011 02:56:46 -0500
Subject: [PATCH] Fixes to allow the serverside to work correctly with mysqli, updating the datalog, and make changes to mysql users in the mysql plugin module.

---
 interface/web/sites/lib/module.conf.php |   32 ++++++++++++++++++++------------
 1 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/interface/web/sites/lib/module.conf.php b/interface/web/sites/lib/module.conf.php
index 8802b27..cbcc62b 100644
--- a/interface/web/sites/lib/module.conf.php
+++ b/interface/web/sites/lib/module.conf.php
@@ -117,6 +117,26 @@
 }
 
 /*
+ *	Web folder menu
+ */
+	$items=array();
+	
+	$items[] = array( 'title' 	=> "Folder",
+			'target' 	=> 'content',
+			'link'	=> 'sites/web_folder_list.php',
+			'html_id' => 'web_folder_list');
+	
+	$items[] = array( 'title' 	=> "Folder users",
+			'target' 	=> 'content',
+			'link'	=> 'sites/web_folder_user_list.php',
+			'html_id' => 'web_folder_user_list');
+	
+	$module["nav"][] = array(	'title'	=> 'Folder protection',
+			'open' 	=> 1,
+			'items'	=> $items);
+
+
+/*
     Cron menu
 */
 if($app->auth->get_client_limit($userid,'cron') != 0)
@@ -152,18 +172,6 @@
 		'items' => $items);
 
 
-
-// clean up
-unset($items);
-
-$items[] = array( 'title' 	=> "Rewrite Rules",
-				  'target' 	=> 'content',
-				  'link'	=> 'sites/proxy_reverse_list.php');
-
-
-$module["nav"][] = array(	'title'	=> 'Reverse Proxy',
-							'open' 	=> 1,
-							'items'	=> $items);
 
 // clean up
 unset($items);

--
Gitblit v1.9.1