diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 18:29:09 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 18:29:09 -0500 |
commit | 8159cc99a64cfe563dccea6821348764fc40fb85 (patch) | |
tree | 9904848c2d517ff8e5a28e47d31aa17e7cfd9c70 /templates/user_remove.php | |
parent | 64e2e072294563b7c834382c2de631687f235fe8 (diff) |
Improve HTML escaping
Diffstat (limited to 'templates/user_remove.php')
-rw-r--r-- | templates/user_remove.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user_remove.php b/templates/user_remove.php index e1dc6f7b..a4db2e4a 100644 --- a/templates/user_remove.php +++ b/templates/user_remove.php @@ -4,7 +4,7 @@ </div> <div class="confirm"> - <p class="alert alert-info"><?= t('Do you really want to remove this user: "%s"?', Helper\escape($user['username'])) ?></p> + <p class="alert alert-info"><?= t('Do you really want to remove this user: "%s"?', $user['username']) ?></p> <div class="form-actions"> <a href="?controller=user&action=remove&user_id=<?= $user['id'] ?>" class="btn btn-red"><?= t('Yes') ?></a> |