mist, first off thanks a lot for taking the time to give me a nice reply.
thing is, here is what my showthread looks like before you posted that.
PHP Code:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if (ismoderator($thread['forumid'])){
eval("\$quoteDBlink = \"".gettemplate('postbit_addquote')."\";");
} else {
$quoteDBlink = " ";
}
if ($postdone[$post[postid]]) {
here is the postbit template
Code:
<td align="right" nowrap><smallfont>
$quoteDBlink
<a href="editpost.php?s=$session[sessionhash]&action=editpost&postid=$post[postid]"><img src="https://vborg.vbsupport.ru/images/edit.gif" border="0" alt="Edit/Delete Message"></a>
<a href="newreply.php?s=$session[sessionhash]&action=newreply&postid=$post[postid]"><img src="https://vborg.vbsupport.ru/images/quote.gif" border="0" alt="Reply w/Quote"></a>
</smallfont></td>
here is my postbit_addquote
Code:
<a href="/addquote.php?&a=fa&postid=$post[postid]"><img src="{imagesfolder}/quotedb.gif" border="0" alt="Add Quote to QuotesDB"></a>
issue is, it wont show up at all. even if i comment all of the code in showthread except the eval statement it still wont work. im kinda puzzled why this wouldnt be working.