https://www.icyphoenix.com/viewtopic.php?f=1&t=4517&p=30531#p30531
-----------------------------------
Lopalong
Wed 13 Aug, 2008 12:14

Re: Site Updated To Dev Version
-----------------------------------
Yep! MG, It looks like a couple of permission strings went missing, and a couple didn't include the table data.. ;)

group_info_body.tpl

Find the beginning and end of this block in between the existing code and replace that content with this: 

It's also the same problem in v.1.2.0.27b. :P

[code linenumbers=false]
	<th>{L_WEBSITE}</th>
		<!-- BEGIN switch_mod_option -->
	<th>{L_SELECT}</th>
		<!-- END switch_mod_option -->

</tr>
<!-- BEGIN member_row -->
<tr>
	<td class="row1 post-buttons-single">&nbsp;{member_row.PM_IMG}&nbsp;</td>
	<td class="row1h row-center" onclick="window.location.href='{member_row.U_VIEWPROFILE}'">{member_row.USERNAME}</td>
	<td class="row2 row-center">{member_row.POSTS}</td>
	<td class="row1 row-center">&nbsp;{member_row.FROM}&nbsp;</td>
	<td class="row2 post-buttons-single">&nbsp;{member_row.EMAIL_IMG}&nbsp;</td>
	<td class="row1 row-center">&nbsp;{member_row.ONLINE_STATUS_IMG}&nbsp;</td>
	<td class="row3 post-buttons-single">&nbsp;{member_row.WWW_IMG}&nbsp;</td>
		<!-- BEGIN switch_mod_option -->
	<td class="row1 row-center">&nbsp;
		<input type="checkbox" name="members[]" value="{member_row.USER_ID}" />
	&nbsp;</td>
		<!-- END switch_mod_option -->
</tr>
<!-- END member_row -->[/code]


