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/template | |
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/template')
-rw-r--r-- | web/template/comaintainers_form.php | 2 | ||||
-rw-r--r-- | web/template/pkgreq_close_form.php | 2 | ||||
-rw-r--r-- | web/template/pkgreq_form.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/web/template/comaintainers_form.php b/web/template/comaintainers_form.php index 70a74645..79e2b52c 100644 --- a/web/template/comaintainers_form.php +++ b/web/template/comaintainers_form.php @@ -1,5 +1,5 @@ <div class="box"> - <h2><?= __('Manage Co-maintainers') ?>: <? htmlspecialchars($pkgbase_name) ?></h2> + <h2><?= __('Manage Co-maintainers') ?>: <?= htmlspecialchars($pkgbase_name) ?></h2> <p> <?= __('Use this form to add co-maintainers for %s%s%s (one user name per line):', '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?> diff --git a/web/template/pkgreq_close_form.php b/web/template/pkgreq_close_form.php index 59e9c8f4..6077b325 100644 --- a/web/template/pkgreq_close_form.php +++ b/web/template/pkgreq_close_form.php @@ -1,5 +1,5 @@ <div class="box"> - <h2><?= __('Close Request') ?>: <? htmlspecialchars($pkgbase_name) ?></h2> + <h2><?= __('Close Request') ?>: <?= htmlspecialchars($pkgbase_name) ?></h2> <p> <?= __('Use this form to close the request for package base %s%s%s.', '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?> diff --git a/web/template/pkgreq_form.php b/web/template/pkgreq_form.php index 35dbef57..904ab48f 100644 --- a/web/template/pkgreq_form.php +++ b/web/template/pkgreq_form.php @@ -1,5 +1,5 @@ <div class="box"> - <h2><?= __('Submit Request') ?>: <? htmlspecialchars($pkgbase_name) ?></h2> + <h2><?= __('Submit Request') ?>: <?= htmlspecialchars($pkgbase_name) ?></h2> <p> <?= __('Use this form to file a request against package base %s%s%s which includes the following packages:', '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?> |