Hey Immortal,
I was just noticing a problem with trying to delete a single post and seemed to have the same error performing other moderation things. I wonder if it is because I took out a line or two of the .xml file hahaha. I didn't see this reported in this thread, but I saw someone asking in vbulletin.com yesterday the same error message as me.
I'm getting an error message at the top of the forum during those things, apparently someone else on vbulletin.com is too:
http://www.vbulletin.com/forum/showthread.php?t=176653
Has anyone mentioned this before? I tried looking at my inlinemod_start hook code and saw this:
Code:
if(preg_match("(t-)([A-Za-z0-9\-]+)-([0-9]+).html$", $vbulletin->GPC['mergethreadurl'], $tmatches))
{
$vbulletin->GPC['mergethreadurl'] =& 'showthread.php?t=' . $tmatches[3];
}
Is this valid?