From b4687b3fa3df9f144a4b713028ccd30add749292 Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Fri, 23 Mar 2012 08:43:03 -0400
Subject: [PATCH] - nginx: added support for multiple PHP-FPM versions (FS#1963 now complete).

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

diff --git a/interface/web/sites/lib/module.conf.php b/interface/web/sites/lib/module.conf.php
index 46502ce..cbcc62b 100644
--- a/interface/web/sites/lib/module.conf.php
+++ b/interface/web/sites/lib/module.conf.php
@@ -64,7 +64,7 @@
 }
 
 /*
-	FTP User menu
+	Shell User menu
 */
 if($app->auth->get_client_limit($userid,'shell_user') != 0)
 {
@@ -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)

--
Gitblit v1.9.1