MyBB Community Forums

Full Version: PHP 8 warning in admin Find Attachments
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Warning [2] Undefined array key "forum" - Line: 886 - File: admin/modules/forum/attachments.php PHP 8.0.28 (Linux)
Change the order of the conditional test. Thank you, Mr. Laird. Smile

Change
                if(is_array($mybb->input['forum']) && !empty($mybb->input['forum']))
to
                if(!empty($mybb->input['forum']) && is_array($mybb->input['forum']))