From e14c6ea84f18143bbd9eb17838b28fb884e78bd3 Mon Sep 17 00:00:00 2001
From: Daniel <info@danielripoll.es>
Date: Sun, 17 Apr 2016 17:32:28 -0400
Subject: [PATCH] Feat: enable xfs-quotas. --- Daniel Ripoll I was a DevOps before it was cool. http://danielripoll.es +34 6688 27490
---
interface/web/mail/lib/module.conf.php | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/interface/web/mail/lib/module.conf.php b/interface/web/mail/lib/module.conf.php
index 7f828d1..ca7d177 100644
--- a/interface/web/mail/lib/module.conf.php
+++ b/interface/web/mail/lib/module.conf.php
@@ -7,6 +7,7 @@
$module['template'] = 'module.tpl.htm';
$module['startpage'] = 'mail/mail_domain_list.php';
$module['tab_width'] = '';
+$module['order'] = '40';
//**** Email accounts menu
@@ -151,7 +152,7 @@
//**** XMPP Menu
$items = array();
-if($app->auth->get_client_limit($userid, 'xmppdomain') != 0)
+if($app->auth->get_client_limit($userid, 'xmpp_domain') != 0)
{
$items[] = array( 'title' => 'XMPP Domain',
'target' => 'content',
@@ -159,12 +160,12 @@
'html_id' => 'xmpp_domain_list');
}
-if($app->auth->get_client_limit($userid, 'xmppaccount') != 0)
+if($app->auth->get_client_limit($userid, 'xmpp_user') != 0)
{
$items[] = array( 'title' => 'XMPP Account',
'target' => 'content',
- 'link' => 'mail/xmpp_account_list.php',
- 'html_id' => 'xmpp_account_list');
+ 'link' => 'mail/xmpp_user_list.php',
+ 'html_id' => 'xmpp_user_list');
}
if(count($items))
--
Gitblit v1.9.1