diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-12 00:02:06 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-12 00:02:08 +0200 |
commit | 3e75d9bb34d7e1d81911ff54ca30aa496f8523a6 (patch) | |
tree | 5e1b22a2871ecb051d239d5ebb92b9ece383bff4 | |
parent | bec3dd7efb773b263afe3232538b97fa5fdcf58a (diff) | |
download | aurweb-3e75d9bb34d7e1d81911ff54ca30aa496f8523a6.tar.xz |
stats.inc.php: Show the 15 most recent updates
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | web/lib/stats.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/stats.inc.php b/web/lib/stats.inc.php index 6ca5011..52637be 100644 --- a/web/lib/stats.inc.php +++ b/web/lib/stats.inc.php @@ -15,7 +15,7 @@ function updates_table() { $q.= 'FROM Packages INNER JOIN PackageBases ON '; $q.= 'Packages.PackageBaseID = PackageBases.ID '; $q.= 'WHERE PackageBases.PackagerUID IS NOT NULL '; - $q.= 'ORDER BY ModifiedTS DESC LIMIT 10'; + $q.= 'ORDER BY ModifiedTS DESC LIMIT 15'; $result = $dbh->query($q); $newest_packages = new ArrayObject(); |