You might want to check that file in post #4 again then. It still has the following in it (on line 3 of the replace part and a couple of other spots in the file). (And I did clean my cache

)
PHP Code:
Step 2: Edit Showthread.php (1 Modification)
----------------------------------------------
Find:
if ($thread[open]) {
$replyclose="{replyimage}";
} else {
$replyclose="{closedthreadimage}";
}
Replace with:
if ($thread[open]) {
$replyclose="{replyimage}";
$closereason="";
} else {
$replyclose="{closedthreadimage}";
if (trim($thread[closereason])) {
$thread[closereason]=bbcodeparse2($thread[closereason],0,1,1,1);
eval("\$thread[closereason] = \"".gettemplate("showthread_closereason")."\";");
} else {
$thread[closereason] = "";
}
}
Quote:
Originally posted by Xenon
yes, i meant $thread[closereason], sorry seems to be a bit confused these days 
hmm i don't have $closereason in my file any more, you are correct it should also be $thread[closereason].
but it is here at my last file version
|