Closed boonebgorges closed 5 years ago
Lines like https://github.com/r-a-y/bp-reply-by-email/blob/master/includes/bp-rbe-extend-bpgroupblog.php#L104 can throw a PHP notice when $rbe->listener is not set. Setting listener to new stdClass fixes the notice, but I'm not sure whether this covers up a deeper bug.
$rbe->listener
listener
new stdClass
Lines like https://github.com/r-a-y/bp-reply-by-email/blob/master/includes/bp-rbe-extend-bpgroupblog.php#L104 can throw a PHP notice when
$rbe->listener
is not set. Settinglistener
tonew stdClass
fixes the notice, but I'm not sure whether this covers up a deeper bug.