Quote:
Originally Posted by kh99
Well, the lines posted in post #7 seem to show that the problem is with template eval lines and not a hook. Also if the problem were in one of the misc_bbcode hooks, it wouldn't happen in profile.php. But they both use a $template array, so I still think that's your issue. I can reproduce the problem by creating a plugin using hook parse_templates and code:
Code:
$template = "test";
So maybe if you created a plugin using hook misc_bbcode_start and code like this:
PHP Code:
if (gettype($template) == 'string') { die ('$template='.$template); }
Then go to the bbcode page, it might give you a clue about where it's being used (or if you never see that message, then I really am wrong).
|
You know, the
very first thing I tried was turning all of my custom products/plugins off, even going so far as to delete some of them for re-import later, and that never worked. It was, in fact, one of the first ones I had worked on, which was using $template as a variable on parse_templates. Sheesh. I don't know how I could have missed that. Thanks for that. I guess I've just been in my Admin CP too long the last couple of weeks.