5
Hi:
Quote:
when an anonymous user's trying to view a user's profile page he gets a blank page, though permissions are set alright.
This error was to be found
in XOOPS 2.3.1 also, and was fixed in later versions. Now, I can see it in XOOPS 2.4 too.
I think problem is in line 105 of /modules/profile/userinfo.php:
if ($GLOBALS['xoopsUser']->IsAdmin()) {
Changing it to this seems to solve the problem:
if ( is_object($GLOBALS['xoopsUser']) && $GLOBALS['xoopsUser']->IsAdmin() ) {
Hope this helps.
Regards: Colossus
PD: On your first report "blank page in registration process", as wishcraft states, I cannot reproduce it neither. It's working for me.