Quote:
Originally Posted by ravenscape
The max characters setting is at 50,000.
This is the maximum amount that I can post in a single quote.
I can post that in a nested quote with more text in the outer quote, so I don't think it's the max characters per post that's gonked. If I turn off the mod, then the posts we're having trouble with go through fine.
|
Excellent. The next thing to check is the
/includes/class_verifyquotes.php file. Specifically the Parse function. It should look like this:
PHP Code:
public function Parse($text) {
$text = preg_replace('#\[quote.*?\]#i','[quote]',$text);
$text = preg_replace('#\[quote\]\[\/quote\]#i','',$text);
$text = preg_replace('#\[noparse\].*?\[\/noparse\]#si','',$text);
$text = $this->do_parse($text);
return preg_match('/\[quote.*?\]|\[\/quote\]/si',$text);
}
if not, then you are still using the original buggy version.
--RayJ