[aur-dev] [PATCH] Don't require login to see out of date packages from package search.
Signed-off-by: Loui Chang <louipc.ist@gmail.com> --- web/template/pkg_search_results.php | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/web/template/pkg_search_results.php b/web/template/pkg_search_results.php index 2087abc..12b32a1 100644 --- a/web/template/pkg_search_results.php +++ b/web/template/pkg_search_results.php @@ -47,9 +47,13 @@ $K = urlencode($K); </span></th> </tr> -<?php for ($i=0; $row = mysql_fetch_assoc($result); $i++) { (($i % 2) == 0) ? $c = "data1" : $c = "data2"; ?> +<?php +for ($i = 0; $row = mysql_fetch_assoc($result); $i++) { + (($i % 2) == 0) ? $c = "data1" : $c = "data2"; + if ($row["OutOfDate"]): $c = "outofdate"; endif; +?> <tr> - <?php if ($SID): if ($row["OutOfDate"]): $c = "outofdate"; endif; ?> + <?php if ($SID): ?> <td class='<?php print $c ?>'><input type='checkbox' name='IDs[<?php print $row["ID"] ?>]' value='1'></td> <?php endif; ?> <td class='<?php print $c ?>'><span class='f5'><span class='blue'><?php print $row["Location"] ?></span></span></td> @@ -114,10 +118,9 @@ $K = urlencode($K); <?php print __("Showing results %s - %s of %s", $first, $last, $total) ?> </span></span></td></tr> <td colspan='2' align='center'> - <span class='f5'> - <?php if ($SID): ?> - <span class="outofdate"><?php print __("Out of Date") ?></span> - <?php endif; ?> + <span class='f3'> + <?php echo __('Legend') ?> + <span class="outofdate"><?php print __('Out of Date') ?></span> </span></td> </tr> <tr> -- 1.6.0.5
I always wondered why it worked like this.. -- Callan Barrett
On Mon, Dec 22, 2008 at 03:43:14PM +0900, Callan Barrett wrote:
I always wondered why it worked like this..
I think because originally the out of date indicator was an inconspicuous red outline around the checkbox. The checkbox that you only get when you're logged in.
On Mon, Dec 22, 2008 at 3:53 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Mon, Dec 22, 2008 at 03:43:14PM +0900, Callan Barrett wrote:
I always wondered why it worked like this..
I think because originally the out of date indicator was an inconspicuous red outline around the checkbox. The checkbox that you only get when you're logged in.
Pushed. -- Callan Barrett
participants (2)
-
Callan Barrett
-
Loui Chang