Quote:
Originally Posted by Arios
$post[itrader_total]"
I didn't see this before. remove the " at the end.
PHP Code:
<if condition="$thread[forumid] == 45">
<a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]><img src="$stylevar[imgdir_button]/votar2.gif" alt="$vbphrase[votar]" border="0" /></a>
</if>
|
Actually, he needs to remove both the " and the > after $post[itrader_total]. So
PHP Code:
<if condition="$thread[forumid] == 45">
<a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]<img src="$stylevar[imgdir_button]/votar2.gif" alt="$vbphrase[votar]" border="0" /></a>
</if>