Oh yeah, BTW...here's the old code that worked in 2.x. It never did work on the quick reply though. I wish that could be fixed on the new version. Anyway, I thought this might help someone to figure this out. I hope this makes it easier.
There are two different variations that accomplish this hack...
Replace this in newthread.php and newreply.php
if (!isset($parseurl)) {
$parseurlchecked="CHECKED";
}
With this:
if (!isset($parseurl)) {
if ($foruminfo[forumid]!=22) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
}
This also seemed to work:
if ((!isset($parseurl)) && ($foruminfo[forumid]!=22)) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
|