From 17509aa3b901ae38c46b810a87a38d5310079c63 Mon Sep 17 00:00:00 2001 From: Nathan Patten Date: Mon, 24 Feb 2014 20:02:45 +1100 Subject: [PATCH] Update admin_settings.inc.php --- public/include/config/admin_settings.inc.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/public/include/config/admin_settings.inc.php b/public/include/config/admin_settings.inc.php index cafe71a3..4e9d6a71 100644 --- a/public/include/config/admin_settings.inc.php +++ b/public/include/config/admin_settings.inc.php @@ -250,6 +250,13 @@ $aSettings['acl'][] = array( 'name' => 'acl_contactform', 'value' => $setting->getValue('acl_contactform'), 'tooltip' => 'Make the contactform private (users only) or public.' ); +$aSettings['acl'][] = array( + 'display' => 'Live Chat Page', 'type' => 'select', + 'options' => array( 0 => 'Private', 1 => 'Public', 2 => 'Disabled' ), + 'default' => 2, + 'name' => 'acl_chat_page', 'value' => $setting->getValue('acl_chat_page'), + 'tooltip' => 'Make the chat page private (users only) or public.' +); $aSettings['system'][] = array( 'display' => 'E-mail address for system error notifications', 'type' => 'text', 'size' => 25, @@ -341,13 +348,6 @@ $aSettings['system'][] = array( 'name' => 'disable_transactionsummary', 'value' => $setting->getValue('disable_transactionsummary'), 'tooltip' => 'Disable transaction summaries. Helpful with large transaction tables.' ); -$aSettings['system'][] = array( - 'display' => 'Live Chat Page', 'type' => 'select', - 'options' => array( 0 => 'Private', 1 => 'Public', 2 => 'Disabled' ), - 'default' => 2, - 'name' => 'system_chat_page', 'value' => $setting->getValue('system_chat_page'), - 'tooltip' => 'Make the chat page private (users only) or public.' -); $aSettings['system'][] = array( 'display' => 'IRC Chat Channel', 'type' => 'text', 'size' => 25,