From 1cc59e3348f42c8204b001e3eb81541b1978600f Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Wed, 12 Jan 2011 05:34:29 -0500
Subject: [PATCH] Load module list from $conf in remoting api.
---
interface/lib/classes/remoting_lib.inc.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/interface/lib/classes/remoting_lib.inc.php b/interface/lib/classes/remoting_lib.inc.php
index 8754760..3f46ef4 100644
--- a/interface/lib/classes/remoting_lib.inc.php
+++ b/interface/lib/classes/remoting_lib.inc.php
@@ -661,11 +661,11 @@
}
function ispconfig_sysuser_add($params,$insert_id){
- global $app,$sql1;
+ global $conf,$app,$sql1;
$username = $app->db->quote($params["username"]);
$password = $app->db->quote($params["password"]);
if(!isset($params['modules'])) {
- $modules = 'dashboard,mail,sites,dns,tools';
+ $modules = $conf['interface_modules_enabled'];
} else {
$modules = $app->db->quote($params['modules']);
}
--
Gitblit v1.9.1