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:
plegall 2010-03-22 22:22:59 +00:00
parent 04482125dd
commit c0879165c6

View file

@ -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;
}