diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2010-10-06 04:25:53 +0200 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2010-11-10 14:50:35 -0500 |
commit | eda713032ce9bed773b6c927b2f6ac4b445fe577 (patch) | |
tree | 8091bc77f982d2d71a50dcd7b1facdd50a3f14c3 /web/template/pkg_search_results.php | |
parent | dbb8bb783f2f22b68ad2d65f020390428e77c479 (diff) | |
download | aurweb-eda713032ce9bed773b6c927b2f6ac4b445fe577.tar.xz |
Add timestamp when a package is flagged out-of-date (FS#20848).
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
- resolve conflict and omit i18n changes.
Diffstat (limited to 'web/template/pkg_search_results.php')
-rw-r--r-- | web/template/pkg_search_results.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_search_results.php b/web/template/pkg_search_results.php index ab49c6b..bf00da5 100644 --- a/web/template/pkg_search_results.php +++ b/web/template/pkg_search_results.php @@ -46,7 +46,7 @@ $atype = account_from_sid($_COOKIE['AURSID']); for ($i = 0; $row = mysql_fetch_assoc($result); $i++) { (($i % 2) == 0) ? $c = "data1" : $c = "data2"; - if ($row["OutOfDate"]): $c = "outofdate"; endif; + if ($row["OutOfDateTS"] !== NULL): $c = "outofdate"; endif; ?> <tr> <?php if ($SID): ?> |