MyBB Community Forums

Full Version: Another Warning under PHP8
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
the admin session had expired; after logout this warning came up
Please try this:

admin/index.php Line 501

if($mybb->input['action'] == "logout" && $mybb->user)

replace with

if(!empty($mybb->user['uid']) && $mybb->input['action'] == "logout")

has not been tested Wink
thank you my friend; nice to see you here too Wink

test is running, waiting... waiting... waiting...


edit: solved