aboutsummaryrefslogtreecommitdiffstats
path: root/admin/configuration.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/configuration.php')
-rw-r--r--admin/configuration.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/admin/configuration.php b/admin/configuration.php
index 3a2a90640..e03d84fb0 100644
--- a/admin/configuration.php
+++ b/admin/configuration.php
@@ -46,7 +46,6 @@ else
}
$main_checkboxes = array(
- 'gallery_locked',
'allow_user_registration',
'obligatory_user_mail_address',
'rate',
@@ -172,16 +171,6 @@ if (isset($_POST['submit']))
}
}
- if (empty($_POST['gallery_locked']) and $conf['gallery_locked'])
- {
- $tpl_var = & $template->get_template_vars('header_msgs');
- $msg_key = array_search(l10n('The gallery is locked for maintenance. Please, come back later.'), $tpl_var);
- unset($tpl_var[$msg_key]);
- }
- elseif (!empty($_POST['gallery_locked']) and !$conf['gallery_locked'])
- {
- $template->append('header_msgs', l10n('The gallery is locked for maintenance. Please, come back later.'));
- }
foreach( $main_checkboxes as $checkbox)
{
$_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';