This commit is contained in:
wangyidong
2015-07-29 13:55:23 +08:00
parent c4c6b1bc2d
commit e6c4f6a953
2 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ js::set('confirmDelete', $lang->user->confirmDelete);
common::printIcon('user', 'edit', "userID=$user->id&from=company", '', 'list');
if(strpos($this->app->company->admins, ",{$user->account},") === false and common::hasPriv('user', 'delete'))
{
echo html::a($this->createLink('user', 'delete', "userID= $user->id"), '<i class="icon-remove"></i>', '', "title='{$lang->user->delete}' class='btn-icon iframe'");
echo html::a($this->createLink('user', 'delete', "userID=$user->id"), '<i class="icon-remove"></i>', '', "title='{$lang->user->delete}' class='btn-icon iframe'");
}
if((strtotime(date('Y-m-d H:i:s')) - strtotime($user->locked)) < $this->config->user->lockMinutes * 60)
{

View File

@@ -19,14 +19,14 @@
<form class='form-condensed' method='post' target='hiddenwin' style='padding: 20px 5% 40px'>
<table class='w-p100 table-form'>
<tr>
<th class='w-100px text-right'>
<th class='w-120px text-right'>
<?php echo $lang->user->verifyPassword;?>
</th>
<td>
<div class="required required-wrapper"></div>
<?php echo html::password('verifyPassword', '', "class='form-control' placeholder='{$lang->user->placeholder->verify}'");?>
</td>
<td class='w-100px'><?php echo html::submitButton();?></td>
<td class='w-100px'><?php echo html::submitButton($lang->delete);?></td>
</tr>
</table>
</form>