From 387d3929686b944ff77adaa64fecb02e2aa26796 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Thu, 05 Jan 2012 11:38:15 -0500
Subject: [PATCH] Added redirect option R=301,L for subdomain, aliasdomain and website on apache servers.

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