Quote:
The comments are part of vB's setup. They do not show up incorrectly in any other of vB's templates.
When modifying templates, it is often helpful to have this setting enabled so you can view the source of a page to determine what template(s) control it.
It's not a big problem to have this disabled, but it is very strange as to why the comments for the templates are incorrectly showing up as part of the article post itself. I'm confused by it.
|
Heh, I never noticied vBulletin 3 did this. This hack hasn't been filtering them out, because the code was never there!
Luckily preventing the comments from showing is as easy as providing an optional argument to the fetch_template() function.
So, in articlebot.php, replace:
PHP Code:
eval('$articlebot_post = "' . fetch_template('articlebot_post') . '";');
with:
PHP Code:
eval('$articlebot_post = "' . fetch_template('articlebot_post', 0, 0) . '";');
Zip has been updated.