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/account_search_results.php | |
parent | 964ea083e68310ca7c09ca938219f4146f0ca5b9 (diff) | |
download | aur-6102759b7cb9fd23f4e7fa5f12137334ff30a410.tar.gz aur-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/account_search_results.php')
-rw-r--r-- | web/template/account_search_results.php | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/web/template/account_search_results.php b/web/template/account_search_results.php index f67cc6a2..ae7c112a 100644 --- a/web/template/account_search_results.php +++ b/web/template/account_search_results.php @@ -7,14 +7,14 @@ else: <table class="results"> <thead> <tr> - <th><?php echo __("Username") ?></th> - <th><?php echo __("Type") ?></th> - <th><?php echo __("Status") ?></th> - <th><?php echo __("Real Name") ?></th> - <th><?php echo __("IRC Nick") ?></th> - <th><?php echo __("PGP Key Fingerprint") ?></th> - <th><?php echo __("Last Voted") ?></th> - <th><?php echo __("Edit Account") ?></th> + <th><?= __("Username") ?></th> + <th><?= __("Type") ?></th> + <th><?= __("Status") ?></th> + <th><?= __("Real Name") ?></th> + <th><?= __("IRC Nick") ?></th> + <th><?= __("PGP Key Fingerprint") ?></th> + <th><?= __("Last Voted") ?></th> + <th><?= __("Edit Account") ?></th> </tr> </thead> <?php @@ -27,9 +27,9 @@ else: endif; ?> <tbody> - <tr class ="<?php echo $c ?>"> - <td><a href="<?php echo get_uri('/packages/'); ?>?SeB=m&K=<?php echo $row["Username"] ?>"><?php echo $row["Username"] ?></a></td> - <td><?php echo $row["AccountType"] ?></td> + <tr class ="<?= $c ?>"> + <td><a href="<?= get_uri('/packages/'); ?>?SeB=m&K=<?= $row["Username"] ?>"><?= $row["Username"] ?></a></td> + <td><?= $row["AccountType"] ?></td> <td> <?php if ($row["Suspended"]): @@ -50,7 +50,7 @@ else: print " "; else: ?> - <a href="<?php echo get_user_uri($row["Username"]) . "edit/" ?>"><?php echo __("Edit") ?></a> + <a href="<?= get_user_uri($row["Username"]) . "edit/" ?>"><?= __("Edit") ?></a> <?php endif; ?> </td> </tr> @@ -63,32 +63,32 @@ else: <table class="results"> <tr> <td align="left"> - <form action="<?php echo get_uri('/accounts/'); ?>" method="post"> + <form action="<?= get_uri('/accounts/'); ?>" method="post"> <fieldset> <input type="hidden" name="Action" value="SearchAccounts" /> - <input type="hidden" name="O" value="<?php echo ($OFFSET-$HITS_PER_PAGE) ?>" /> + <input type="hidden" name="O" value="<?= ($OFFSET-$HITS_PER_PAGE) ?>" /> <?php reset($search_vars); while (list($k, $ind) = each($search_vars)): ?> - <input type="hidden" name="<?php echo $ind ?>" value="<?php echo ${$ind} ?>" /> + <input type="hidden" name="<?= $ind ?>" value="<?= ${$ind} ?>" /> <?php endwhile; ?> - <input type="submit" class="button" value="<-- <?php echo __("Less") ?>" /> + <input type="submit" class="button" value="<-- <?= __("Less") ?>" /> </fieldset> </form> </td> <td align="right"> - <form action="<?php echo get_uri('/accounts/'); ?>" method="post"> + <form action="<?= get_uri('/accounts/'); ?>" method="post"> <fieldset> <input type="hidden" name="Action" value="SearchAccounts" /> - <input type="hidden" name="O" value="<?php echo ($OFFSET+$HITS_PER_PAGE) ?>" /> + <input type="hidden" name="O" value="<?= ($OFFSET+$HITS_PER_PAGE) ?>" /> <?php reset($search_vars); while (list($k, $ind) = each($search_vars)): ?> - <input type="hidden" name="<?php echo $ind ?>" value="<?php echo ${$ind} ?>" /> + <input type="hidden" name="<?= $ind ?>" value="<?= ${$ind} ?>" /> <?php endwhile; ?> - <input type="submit" class="button" value="<?php echo __("More") ?> -->" /> + <input type="submit" class="button" value="<?= __("More") ?> -->" /> </fieldset> </form> </td> @@ -96,7 +96,7 @@ else: </table> <?php else: ?> <p style="text-align:center;"> - <?php print __("No more results to display."); ?> + <?= __("No more results to display."); ?> </p> <?php endif; ?> <?php endif; ?> |