diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-15 22:05:03 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-15 22:05:03 +0100 |
commit | 5059056567161d616496a015804094371bfb5b48 (patch) | |
tree | 4544e64dd8edc1f8cf9f23704995248e1c985e1c /web/html/pkgdel.php | |
parent | e724b123ec003aab4a24ace4e7eea934a6dad395 (diff) | |
download | aur-5059056567161d616496a015804094371bfb5b48.tar.gz aur-5059056567161d616496a015804094371bfb5b48.tar.xz |
Fix several PHP short open tags
Use "<?=" instead of "<?" for printing.
Fixes a regression introduced in a9048bb (Dedupe translatable strings,
2015-11-25).
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html/pkgdel.php')
-rw-r--r-- | web/html/pkgdel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/pkgdel.php b/web/html/pkgdel.php index 21a2677c..591ccce8 100644 --- a/web/html/pkgdel.php +++ b/web/html/pkgdel.php @@ -12,7 +12,7 @@ html_header(__("Package Deletion")); if (has_credential(CRED_PKGBASE_DELETE)): ?> <div class="box"> - <h2><?= __('Delete Package') ?>: <? htmlspecialchars($pkgbase_name) ?></h2> + <h2><?= __('Delete Package') ?>: <?= htmlspecialchars($pkgbase_name) ?></h2> <p> <?= __('Use this form to delete the package base %s%s%s and the following packages from the AUR: ', '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?> |