I'm getting this error when I try to create a new thread with Poll as anonymous user in "development" mode.
I think, the following:
should be:
Experts?
I think, the following:
PHP:
if (isset($content->User) && $content->User->user_id != \XF::visitor()->user_id)
should be:
PHP:
if (isset($content->User->user_id) && $content->User->user_id != \XF::visitor()->user_id)
Experts?