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

View File

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