MyBB Community Forums

Full Version: Parser output validation failed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Good day MyBB I have updated a test forum from 1.8.21 to 1.8.27 before doing my main forum and when some threads are read I'm getting the following error.

Type: 512
File: inc/class_parser.php (Line no. 2016)
Message
Parser output validation failed.

So far I have found the threads that are having the problem are where I have used a MyCode:

Regular Expression
\[qt\](.*)\[/qt\]

Replacement
<blockquote style="border: 2px solid #2e7d3f; padding: 10px; background-color: #f7f8e0"><b>Quote:</b> <hr color="#2e7d3f"> $1</blockquote>

Another thing is I have the Template Conditionals (1.8) plug-in installed and if I turn it off it makes all threads give a blank page.

All was fine before the upgrade to 1.8.27

Thank you.
Try changing
<hr color="#2e7d3f">
to
<hr color="#2e7d3f" />
Thank you very much Devilshakerz it just needed the forward slash. Smile