aboutsummaryrefslogtreecommitdiffstats
path: root/admin/configuration.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-01-31 00:33:01 +0000
committerplegall <plg@piwigo.org>2012-01-31 00:33:01 +0000
commit7c322f6d9c241c9282bc9c8362e702b49814fbad (patch)
tree82a8b6a2eb7bd7fda8ea2882f586c3ef9ddcd269 /admin/configuration.php
parent907c8e2104ac7f96327b16a3daee78947c21432f (diff)
bug 2558 fixed: instead of locking the gallery with a simple checkbox among
configuration options, "lock gallery" becomes a maintenance action, with a confirmation on popup. git-svn-id: http://piwigo.org/svn/trunk@13001 68402e56-0260-453c-a942-63ccdbb3a9ee
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';