
04-16-2003, 01:16 AM
|
 |
|
|
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
04-10-03 at 11:03 PM SloppyGoat said this in Post #922
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
|
|