36
so, since my problem appeared on every section with notification module i came to the point of changing the kernel notification.php
on line 99 is
$member_handler =& xoops_gethandler('member');
$user =& $member_handler->getUser($this->getVar('not_uid'));
$method = $user->getVar('notify_method');
where $user =& &mem..... returns a NULL-Ptr.
So $method = $user.... exits with failure causing the blank page.
$this->getVar('not_uid') does not return the User-ID.
Instead it seams it returns a static number ... NOT an User-ID.
No wonder it stops there ;)
but for a workaround, which looks pretty much like disabling notification, hehe, if there are errors:
$member_handler =& xoops_gethandler('member');
$user =& $member_handler->getUser($this->getVar('not_uid'));
if( $user == NULL )
return true;
$method = $user->getVar('notify_method');
then at least it will work again. May we soon get a fix?
Is there a fix?