diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-21 08:57:29 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-24 12:23:04 +0200 |
commit | 6102759b7cb9fd23f4e7fa5f12137334ff30a410 (patch) | |
tree | fba81fdedea0dd6ca3f1e1bdd260fa55ebc36ee9 /web/template/actions_form.php | |
parent | 964ea083e68310ca7c09ca938219f4146f0ca5b9 (diff) | |
download | aurweb-6102759b7cb9fd23f4e7fa5f12137334ff30a410.tar.xz |
Use echo shortcut syntax
Replace all occurrences of "<?php echo" and "<?php print" by "<?=" to
reduce noise in templates.
Note that as of PHP 5.4.0, "<?=" is always available and no longer
requires "short_open_tag" to be set.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/actions_form.php')
-rw-r--r-- | web/template/actions_form.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/web/template/actions_form.php b/web/template/actions_form.php index d687f50..650c6c6 100644 --- a/web/template/actions_form.php +++ b/web/template/actions_form.php @@ -1,38 +1,38 @@ <?php if (!$USE_VIRTUAL_URLS || $atype == "Trusted User" || $atype == "Developer" ): ?> <div class="box"> - <form action="<?php echo htmlspecialchars(get_pkg_uri($row['Name']), ENT_QUOTES); ?>" method="post"> + <form action="<?= htmlspecialchars(get_pkg_uri($row['Name']), ENT_QUOTES); ?>" method="post"> <fieldset> - <input type="hidden" name="IDs[<?php echo $row['ID'] ?>]" value="1" /> - <input type="hidden" name="ID" value="<?php echo $row['ID'] ?>" /> - <input type="hidden" name="token" value="<?php echo htmlspecialchars($_COOKIE['AURSID']) ?>" /> + <input type="hidden" name="IDs[<?= $row['ID'] ?>]" value="1" /> + <input type="hidden" name="ID" value="<?= $row['ID'] ?>" /> + <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> <?php if (!$USE_VIRTUAL_URLS): ?> <?php if (user_voted($uid, $row['ID'])): ?> - <input type="submit" class="button" name="do_UnVote" value="<?php echo __("UnVote") ?>" /> + <input type="submit" class="button" name="do_UnVote" value="<?= __("UnVote") ?>" /> <?php else: ?> - <input type="submit" class="button" name="do_Vote" value="<?php echo __("Vote") ?>" /> + <input type="submit" class="button" name="do_Vote" value="<?= __("Vote") ?>" /> <?php endif; ?> <?php if (user_notify($uid, $row['ID'])): ?> - <input type="submit" class="button" name="do_UnNotify" value="<?php echo __("UnNotify") ?>" title="<?php echo __("No New Comment Notification") ?>" /> + <input type="submit" class="button" name="do_UnNotify" value="<?= __("UnNotify") ?>" title="<?= __("No New Comment Notification") ?>" /> <?php else: ?> - <input type="submit" class="button" name="do_Notify" value="<?php echo __("Notify") ?>" title="<?php echo __("New Comment Notification") ?>" /> + <input type="submit" class="button" name="do_Notify" value="<?= __("Notify") ?>" title="<?= __("New Comment Notification") ?>" /> <?php endif; ?> <?php if ($row["OutOfDateTS"] === NULL): ?> - <input type="submit" class="button" name="do_Flag" value="<?php echo __("Flag Out-of-date") ?>" /> + <input type="submit" class="button" name="do_Flag" value="<?= __("Flag Out-of-date") ?>" /> <?php elseif (($row["OutOfDateTS"] !== NULL) && ($uid == $row["MaintainerUID"] || $atype == "Trusted User" || $atype == "Developer")): ?> - <input type="submit" class="button" name="do_UnFlag" value="<?php echo __("UnFlag Out-of-date") ?>" /> + <input type="submit" class="button" name="do_UnFlag" value="<?= __("UnFlag Out-of-date") ?>" /> <?php endif; ?> <?php endif; ?> <?php if ($atype == "Trusted User" || $atype == "Developer"): ?> - <input type="submit" class="button" name="do_Delete" value="<?php echo __("Delete Packages") ?>" /> - <label for="merge_Into" ><?php echo __("Merge into") ?></label> + <input type="submit" class="button" name="do_Delete" value="<?= __("Delete Packages") ?>" /> + <label for="merge_Into" ><?= __("Merge into") ?></label> <input type="text" id="merge_Into" name="merge_Into" /> <input type="checkbox" name="confirm_Delete" value="1" /> - <?php echo __("Confirm") ?> + <?= __("Confirm") ?> <?php endif; ?> </fieldset> |