Remove quotes from tooltip in the roles overview

refs #8110
This commit is contained in:
Eric Lippmann 2015-02-02 16:47:28 +01:00
parent 942d55c0d4
commit 1d99780a61
1 changed files with 4 additions and 4 deletions

View File

@ -52,10 +52,10 @@
<td><?= $this->escape($role->groups) ?></td>
<td>
<a href="<?= $this->url('roles/remove', array('role' => $name)) ?>"
title="<?php printf(
$this->translate('Remove role "%s"'),
$name
); ?>">
title="<?= sprintf(
$this->translate('Remove role %s'),
$name
) ?>">
<?= $this->icon('cancel') ?>
</a>
</td>