Another bug
-
newstatpress.php:2038 uses $userdata->user_login. This causes error when no user is logged in (no userdata object!).
Solution:
please do something like this:
$login = $userdata ? $userdata->user_login : null;
then use $login in line 2038;
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Another bug’ is closed to new replies.