* finish task#1323.

This commit is contained in:
chencongzhi520@gmail.com
2013-04-15 01:32:52 +00:00
parent 921a09eef0
commit 63ef3df46b
9 changed files with 96 additions and 33 deletions
-11
View File
@@ -27,17 +27,6 @@
<th class='rowhead'><?php echo $lang->user->realname;?></th>
<td><?php echo html::input('realname', $user->realname, "class='text-3'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->user->group;?></th>
<td>
<?php
foreach($groups as $groupID => $groupName)
{
echo html::checkbox('groups', array($groupID => $groupName), in_array($groupID, $user->group) ? $groupID : '');
}
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->user->role;?></th>
<td><?php echo html::select('role', $lang->user->roleList, $user->role, "class='select-3'");?></td>