From 51fab967f198630f3b7e7fe3a42d14cbd6266eea Mon Sep 17 00:00:00 2001
From: cfoe <cfoe@ispconfig3>
Date: Sat, 19 May 2012 05:00:28 -0400
Subject: [PATCH] lossless compression of all images of the default themes by yahoo smush.it -> saving 36% ~ 500kb of 1350kb
---
interface/web/sites/lib/module.conf.php | 34 +++++++++++++++++++++-------------
1 files changed, 21 insertions(+), 13 deletions(-)
diff --git a/interface/web/sites/lib/module.conf.php b/interface/web/sites/lib/module.conf.php
index b96ac1d..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)
@@ -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