aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.inc.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-07-07 09:22:11 +0000
committerrub <rub@piwigo.org>2007-07-07 09:22:11 +0000
commit28a8e83485014236ad71b212d0934829d1ac91e9 (patch)
treeb4e49191352d0b52cc3809d47bc10478125f7a32 /include/common.inc.php
parentc281046fcab94c02a085931f026159842791186a (diff)
Resolved issue 0000717: guest must be guest
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2054 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 db94ed740..cba46b781 100644
--- a/include/common.inc.php
+++ b/include/common.inc.php
@@ -187,6 +187,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'];