From 2af16b0bcb10108eaa0e9e91bc729e0f602fd638 Mon Sep 17 00:00:00 2001
From: quentusrex <quentusrex@ispconfig3>
Date: Thu, 30 Oct 2008 12:29:48 -0400
Subject: [PATCH] This is to try to fix the bug where if a filter is created by an admin, then the user with the e-mail account can't see the filter.
---
interface/web/mail/lib/module.conf.php | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/interface/web/mail/lib/module.conf.php b/interface/web/mail/lib/module.conf.php
index 6e57cbd..5a6fa82 100644
--- a/interface/web/mail/lib/module.conf.php
+++ b/interface/web/mail/lib/module.conf.php
@@ -80,7 +80,19 @@
'open' => 1,
'items' => $items);
+//**** Statistics menu
+$items = array();
+$items[] = array( 'title' => 'Mailbox traffic',
+ 'target' => 'content',
+ 'link' => 'mail/mail_user_stats.php');
+
+
+$module['nav'][] = array( 'title' => 'Statistics',
+ 'open' => 1,
+ 'items' => $items);
+
+
//**** Global filters menu
$items = array();
if($_SESSION['s']['user']['typ'] == 'admin') {
--
Gitblit v1.9.1