Quote:
Originally Posted by Nathan2006
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?
Im not getting an image in the showthread
|
yup, no image but u can use one with this code
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>