I have one of my forums excluded from default autoparsing. Can anyone tell me how I can also apply this exclusion to the quickreply box? It seems to ignore my hack, which is this.
Replace this in newthread.php and newreply.php
PHP Code:
if (!isset($parseurl)) {
$parseurlchecked="CHECKED";
}
With this:
PHP Code:
if ((!isset($parseurl)) && ($foruminfo[forumid]!=22)) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
It's pretty slick, except for the quickreply. I assume it's because of this line?
Code:
<input type="hidden" name="parseurl" value="yes">
[edit] Nope, actually, I just tried setting it to no, and it still parsed.
But if I remove that line, it stops parsing globally. Hmmmm