mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
bug fixed: if the theme for guest is empty (I don't know how this could be,
but it has been reported), the fallback on constant PHPWG_DEFAULT_TEMPLATE was not working. git-svn-id: http://piwigo.org/svn/trunk@5271 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -832,7 +832,7 @@ function get_default_user_info($convert_str = true)
|
||||
function get_default_user_value($value_name, $sos_value)
|
||||
{
|
||||
$default_user = get_default_user_info(true);
|
||||
if ($default_user === false or !isset($default_user[$value_name]))
|
||||
if ($default_user === false or empty($default_user[$value_name]))
|
||||
{
|
||||
return $sos_value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user