From c2a537318436d7f80401af3c68f1bcae24a5274c Mon Sep 17 00:00:00 2001 From: patdenice Date: Sat, 5 Mar 2011 16:14:41 +0000 Subject: bug:2212 Update header message when gallery is locked or unlocked. git-svn-id: http://piwigo.org/svn/trunk@9544 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/configuration.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'admin/configuration.php') diff --git a/admin/configuration.php b/admin/configuration.php index 7fedd34cf..c84962e42 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -109,6 +109,16 @@ if (isset($_POST['submit'])) { case 'main' : { + 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'; -- cgit v1.2.3