mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-21 00:53:04 +02:00
Resolved issue 0000717: guest must be guest
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2054 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -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'];
|
||||
|
||||
@@ -150,6 +150,12 @@ function build_user( $user_id, $use_cache )
|
||||
$user['is_the_guest'] = ($user['id'] == $conf['guest_id']);
|
||||
$user['is_the_default'] = ($user['id'] == $conf['default_user_id']);
|
||||
|
||||
if ($user['is_the_guest'] and $user['status'] <> 'guest')
|
||||
{
|
||||
$user['status'] = 'guest';
|
||||
$user['internal_status']['guest_must_be_guest'] = true;
|
||||
}
|
||||
|
||||
// calculation of the number of picture to display per page
|
||||
$user['nb_image_page'] = $user['nb_image_line'] * $user['nb_line_page'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user