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:
parent
04482125dd
commit
c0879165c6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue