aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.inc.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-07-07 09:23:04 +0000
committerrub <rub@piwigo.org>2007-07-07 09:23:04 +0000
commitf3b1fed9c61a4fa9e3e761191e9d377f06d52f80 (patch)
treec50364f66e3691baf37c33f63d5d67a3f58abaea /include/common.inc.php
parentc9465002447bd13fcd18f952d3530435c938c764 (diff)
Resolved issue 0000717: guest must be guest
git-svn-id: http://piwigo.org/svn/trunk@2055 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/common.inc.php')
-rw-r--r--include/common.inc.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/common.inc.php b/include/common.inc.php
index 39de9a42f..49fc70dba 100644
--- a/include/common.inc.php
+++ b/include/common.inc.php
@@ -186,6 +186,13 @@ else
$template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'], $user['theme'] );
}
+if (isset($user['internal_status']['guest_must_be_guest'])
+ and
+ $user['internal_status']['guest_must_be_guest'] === true)
+{
+ $header_msgs[] = l10n('guest_must_be_guest');
+}
+
if ($conf['gallery_locked'])
{
$header_msgs[] = $lang['gallery_locked_message'];