MyBB Community Forums

Full Version: PHP 8 Warning if forum rules and newthread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If a forum has rules defined, creating a new thread in that forum throws a warning.
Undefined variable $parser in line 1105 of forum/newthread.php

Change
		if(!$parser)
to
		if(empty($parser))