Quote:
Originally Posted by RasMasta
Using 3.5.4 I get this error when saving the template
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/*********/public_html/forum/includes/adminfunctions_template.php(3537) : eval()'d code on line 80
|
Yor missing an </if> after photogear
Code:
<if condition="$userinfo[field7]">
<tr>
<td class="thead"><b>Photo Gear:</b></td>
</tr>
<tr>
<td class="alt1"><div class="smallfont"><div style="white-space:pre;">$userinfo[field7]</div></div></td>
</tr>
<if condition="$show['signature']">
should be
Code:
<if condition="$userinfo[field7]">
<tr>
<td class="thead"><b>Photo Gear:</b></td>
</tr>
<tr>
<td class="alt1"><div class="smallfont"><div style="white-space:pre;">$userinfo[field7]</div></div></td>
</tr>
</if><if condition="$show['signature']">
[/code]