* fix the error.

This commit is contained in:
wangchunsheng
2010-01-20 03:47:20 +00:00
parent e68562ee69
commit 174affc4bb

View File

@@ -23,15 +23,13 @@
*/
?>
<?php include '../../common/header.html.php';?>
<style>span{display:block; width:100px; float:left}</style>
<style>#users span{display:block; width:100px; float:left}</style>
<div class='yui-d0'>
<form method='post' target='hiddenwin'>
<table align='center' class='table-1 a-left'>
<caption><?php echo $group->name . $lang->colon . $lang->group->manageMember;?></caption>
<tr>
<td>
<?php foreach($allUsers as $user) echo '<span>' . html::checkbox('members', $user, $groupUsers) . '</span>';?>
</td>
<td id='users'><?php foreach($allUsers as $account => $realname) echo '<span>' . html::checkbox('members', array($account => $realname), $groupUsers) . '</span>';?></td>
</tr>
<tr><td class='a-center'><?php echo html::submitButton() . html::linkButton($lang->goback, $this->createLink('group', 'browse'));?></td></tr>
</table>