on 3.7.4, i edit the postbit and postbit_legacy i get a message that tells me i am missing <if>.
I have no problem inserting it, but where? here is the code i am inserting into the postbit template:
Code:
<div id="postmenu_$post[postid]">
<if condition="$show['profile']">
<a class="bigusername"
href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
$post[onlinestatus]<if
condition="$post[field5]">$vbphrase[gender] <img
src="$stylevar[imgdir_misc]/$post[field5].gif" alt="$post[field5]" /></if>
<script type="text/javascript">
vbmenu_register("postmenu_$post[postid]", true); </script>
<else />
$post[musername]<if
condition="$post[field5]">$vbphrase[gender] <img
src="$stylevar[imgdir_misc]/$post[field5].gif" alt="$post[field5]" /></if>
</if>
</div>
and the postbit_legacy template:
Code:
<div id="postmenu_$post[postid]">
<if condition="$show['profile']">
<a class="bigusername"
href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a><if
condition="$post[field5]">$vbphrase[gender] <img
src="$stylevar[imgdir_misc]/$post[field5].gif" alt="$post[fieldx]" /></if>
<script type="text/javascript">
vbmenu_register("postmenu_$post[postid]", true); </script>
<else />
$post[musername]<if
condition="$post[field5]">$vbphrase[gender] <img
src="$stylevar[imgdir_misc]/$post[field5].gif" alt="$post[field5]" /></if>
</if>
</div>
anyone wanna help me out on this?