Skip to content

Commit

Permalink
Update admin_settings.inc.php
Browse files Browse the repository at this point in the history
  • Loading branch information
nrpatten committed Feb 24, 2014
1 parent ae9c220 commit 17509aa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions public/include/config/admin_settings.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,13 @@
'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,
Expand Down Expand Up @@ -341,13 +348,6 @@
'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,
Expand Down

0 comments on commit 17509aa

Please sign in to comment.