Gender displayed when not chosen any

RHochstenbach

Administrator
If you don't select your gender, it shows Gender: with nothing next to it below the avatar.

I think the line is written like this:
Code:
Gender: <if condition="$post['field5']"><div class="pibu"><div class="pib">$post[field5]</div></div></if>

It should be this:
Code:
<if condition="$post['field5']"><div class="pibu"><div class="pib">Gender: $post[field5]</div></div></if>
 
Back
Top