Nathan2006 |
04-15-2006 07:12 PM |
Quote:
Originally Posted by Developer
fixed. :)
edit the template again
|
Hi thank you for your reply,
The only problem is that this code:
PHP Code:
<if condition="$thread['postuserid'] == $bbuserinfo['userid']">
<tr>
<td class="vbmenu_option"> <if condition="in_array($thread['threadid'], $mybestthread)"><a href="showthread.php?$session[sessionurl]do=removemybest&t=$threadid">$vbphrase[mybest_remove]</a><else /><a href="showthread.php?$session[sessionurl]do=addmybest&t=$threadid">$vbphrase[mybest_add]</a></if></td>
</tr>
</if>
Does not seem to show the image as in the old code?
PHP Code:
<if condition="$thread['postuserid'] == $bbuserinfo['userid']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/best.gif" />
<if condition="in_array($thread['threadid'], $mybestthread)">
<a href="showthread.php?$session[sessionurl]do=removemybest&t=$threadid">$vbphrase[mybest_remove]</a>
<else />
<a href="showthread.php?$session[sessionurl]do=addmybest&t=$threadid">$vbphrase[mybest_add]</a>
</if>
</td>
</tr>
</if>
Or is it me just being stupid?:D
Im not getting an image in the showthread
|