From ba95d678a0fb4d953ba43939122bd613250c4430 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Tue, 20 Aug 2013 12:08:59 +0200 Subject: [PATCH] moved motd to website tab --- 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 87375864..f3b68cd8 100644 --- a/public/include/config/admin_settings.inc.php +++ b/public/include/config/admin_settings.inc.php @@ -18,6 +18,13 @@ $aSettings['website'][] = array( 'name' => 'maintenance', 'value' => $setting->getValue('maintenance'), 'tooltip' => 'Enable or Disable maintenance mode. Only admins can still login.' ); +$aSettings['website'][] = array( + 'display' => 'Message of the Day', 'type' => 'text', + 'size' => 25, + 'default' => '', + 'name' => 'system_motd', 'value' => $setting->getValue('system_motd'), + 'tooltip' => 'Display a message of the day as information popup if set.' +); $aSettings['website'][] = array( 'display' => 'Website Name', 'type' => 'text', 'size' => 25, @@ -177,12 +184,5 @@ $aSettings['recaptcha'][] = array( 'name' => 'recaptcha_public_key', 'value' => $setting->getValue('recaptcha_public_key'), 'tooltip' => 'Your public key as given by your re-Captcha account.' ); -$aSettings['other'][] = array( - 'display' => 'Message of the Day', 'type' => 'text', - 'size' => 25, - 'default' => '', - 'name' => 'system_motd', 'value' => $setting->getValue('system_motd'), - 'tooltip' => 'Display a message of the day as information popup if set.' -); ?>