aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_user.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions_user.inc.php')
-rw-r--r--include/functions_user.inc.php16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php
index b1f55ea2e..d6250c582 100644
--- a/include/functions_user.inc.php
+++ b/include/functions_user.inc.php
@@ -808,18 +808,26 @@ function get_default_user_info($convert_str = true)
if (!isset($cache['default_user']))
{
- $query = 'SELECT * FROM '.USER_INFOS_TABLE.
- ' WHERE user_id = '.$conf['default_user_id'].';';
+ $query = '
+SELECT *
+ FROM '.USER_INFOS_TABLE.'
+ WHERE user_id = '.$conf['default_user_id'].'
+;';
$result = pwg_query($query);
- $cache['default_user'] = pwg_db_fetch_assoc($result);
- if ($cache['default_user'] !== false)
+ if (pwg_db_num_rows($result) > 0)
{
+ $cache['default_user'] = pwg_db_fetch_assoc($result);
+
unset($cache['default_user']['user_id']);
unset($cache['default_user']['status']);
unset($cache['default_user']['registration_date']);
}
+ else
+ {
+ $cache['default_user'] = false;
+ }
}
if (is_array($cache['default_user']) and $convert_str)