From cfd8fc69928ae55f18787e3ea6aabfed2bbe6292 Mon Sep 17 00:00:00 2001
From: cfoe <cfoe@ispconfig3>
Date: Fri, 18 May 2012 14:16:08 -0400
Subject: [PATCH] added missing non-breaking spaces in getPagingHTML output to fix html output of paging
---
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