From 2cb1563f63386b35a69e460051aa9b4a2851d104 Mon Sep 17 00:00:00 2001 From: ftimme <ft@falkotimme.com> Date: Wed, 30 May 2012 07:30:44 -0400 Subject: [PATCH] - Added (clickable) placeholders to client messaging function. - Added check so that the client password isn't inserted into the message (for security reasons). --- server/lib/classes/getconf.inc.php | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/server/lib/classes/getconf.inc.php b/server/lib/classes/getconf.inc.php index 2a31978..c2207a1 100644 --- a/server/lib/classes/getconf.inc.php +++ b/server/lib/classes/getconf.inc.php @@ -34,7 +34,7 @@ function get_server_config($server_id, $section = '') { global $app; - + if(!is_array($this->config[$server_id])) { $app->uses('ini_parser'); $server_id = intval($server_id); @@ -59,7 +59,6 @@ } return ($section == '') ? $this->config['global'] : $this->config['global'][$section]; } - } ?> -- Gitblit v1.9.1