Skip to content

Commit

Permalink
CSS: Remove unused classes in the user/list view script
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 25, 2015
1 parent 2e6fed8 commit 1543bc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/views/scripts/user/list.phtml
Expand Up @@ -15,7 +15,7 @@ if (! $this->compact): ?>
</div>
<?php endif ?>

<div class="content users">
<div class="content">
<?php if (! isset($backend)): ?>
<p><?= $this->translate('No backend found which is able to list users.') ?></p>
</div>
Expand All @@ -35,7 +35,7 @@ $reducible = $this->hasPermission('config/authentication/users/remove') && $back
'class' => 'user-add'
)) ?>
<?php endif ?>
<table data-base-target="_next" class="action user-list alternating">
<table data-base-target="_next" class="action">
<thead>
<tr>
<th class="user-name"><?= $this->translate('Username') ?></th>
Expand All @@ -47,7 +47,7 @@ $reducible = $this->hasPermission('config/authentication/users/remove') && $back
<tbody>
<?php foreach ($users as $user): ?>
<tr>
<td class="user-name"><?= $this->qlink(
<td><?= $this->qlink(
$user->user_name,
'user/show',
array(
Expand All @@ -59,7 +59,7 @@ $reducible = $this->hasPermission('config/authentication/users/remove') && $back
)
) ?></td>
<?php if ($reducible): ?>
<td class="user-remove"><?= $this->qlink(
<td><?= $this->qlink(
null,
'user/remove',
array(
Expand Down

0 comments on commit 1543bc6

Please sign in to comment.