PDA

View Full Version : Auto Parsing of Url tags Question.


neocorteqz
09-27-2002, 08:45 PM
What I need to know is. Is there a way to set individual options so a specific forum will not auto parse url's, but the rest of the board will?

Thanks.

Logician
09-28-2002, 09:26 PM
In newreply.php and newthread.php find:


if (!isset($parseurl)) {
$parseurlchecked="CHECKED";
}


and after that add:


if ($forumid==X) {$parseurlchecked="";}


Replace X with the forumid of the forum you want to disable parsing..And remember this hack will overwrite the user's own selection in USER CP for auto-parsing.. They can still enable/disable in the posting screen though..

Da`Nacho
10-29-2002, 05:40 AM
One should add that you should also edit editpost.php and after:


$parseurlchecked="CHECKED";


Add:


if (($foruminfo[forumid])==X) {$parseurlchecked="";}

Dean C
10-29-2002, 03:22 PM
What is the parsing of url's?

- miSt

Chris M
10-29-2002, 03:29 PM
It I typed:

http://www.darkblazes.com/

vB puts a [url] tag around it;)

Satan

neocorteqz
11-04-2002, 08:14 PM
Originally posted by Da`Nacho
One should add that you should also edit editpost.php and after:


$parseurlchecked="CHECKED";


Add:


if (($foruminfo[forumid])==X) {$parseurlchecked="";}



Thanks nacho man.