MyBB Community Forums

Full Version: "Notice: Undefined index: num_threads" when moving threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
mybb_1807
Notice: Undefined index: num_threads in inc/class_moderation.php on line 2372
When moving threads with replies (other than topic starter)

Fix: add
if(!isset($user_counters[$posters['uid']]['num_threads']))
{
    $user_counters[$posters['uid']]['num_threads'] = 0;
}

after line 2296
Hi,

Thank you for your report. We have pushed this issue to our Github repository for further analysis where you can track our commits and progress with fixing this bug. Discussions regarding this bug may also take place there too.

Follow this link to visit the issue on Github: https://github.com/mybb/mybb/issues/2419

Thanks for contributing to MyBB!

Regards,
The MyBB Group