Quote:
Originally posted by Funkie
How about instead of strike through,have a lill locked icon or [Closed] Text on it??????
Would that be able to be done.
* Funkie clicks install
|
Ok that's easy too. If you've already installed it, find this in forumdisplay.php:
PHP Code:
if (!$thread[open]) {
$thread[newoldhot]='lock'.$thread[newoldhot];
// Strike-Through Hack
$thread[title] = "<span class='locked'>$thread[title]</span>";
// End Strike-Through Hack
}
And change it to this:
PHP Code:
if (!$thread[open]) {
$thread[newoldhot]='lock'.$thread[newoldhot];
// Strike-Through Hack
$thread[title] = "[CLOSED]thread[title]";
// End Strike-Through Hack
}
As for the option to turn it on or off, I might look into that.