Quote:
Originally posted by Danny
Line 437 to 441
Code:
if ($thread[open]) {
$replyclose="https://vborg.vbsupport.ru/images/reply.gif";
} else {
$replyclose="https://vborg.vbsupport.ru/images/threadclosed.gif";
}
Replace with ....
Line 437 to 445
Code:
if ($thread[open]) {
eval("\$replyopenclosed = \"".gettemplate("showthread_replyopen")."\";");
} else {
if (ismoderator($thread[forumid],'canopenclose')) {
eval("\$replyopenclosed = \"".gettemplate("showthread_replyclosedmod")."\";");
} else {
eval("\$replyopenclosed = \"".gettemplate("showthread_replyclosed")."\";");
}
}
|
What's that do? BTW I used firefly's code as yours changed my color due to vb.org parsing the colors and me being too lazy to edit it.