From 5b1451ce291da5c75a08e1b3aaf2689fc1487fb9 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 23 Feb 2001 14:15:17 +0000 Subject: [PATCH] - a small improvement to the "track drop.org" page --- account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account.php b/account.php index 5b8a1805e3b..369ce98286c 100644 --- a/account.php +++ b/account.php @@ -448,7 +448,7 @@ function account_track_site() { $period = 259200; // 3 days - $sresult = db_query("SELECT s.subject, s.id, COUNT(c.lid) AS count FROM comments c LEFT JOIN stories s ON c.lid = s.id WHERE s.status = 2 AND c.link = 'story' AND ". time() ." - c.timestamp < $period GROUP BY c.lid ORDER BY count DESC LIMIT 10"); + $sresult = db_query("SELECT s.subject, s.id, COUNT(c.lid) AS count FROM comments c LEFT JOIN stories s ON c.lid = s.id WHERE s.status = 2 AND c.link = 'story' AND ". time() ." - c.timestamp < $period GROUP BY c.lid ORDER BY s.timestamp DESC LIMIT 10"); while ($story = db_fetch_object($sresult)) { $output .= "
  • ". format_plural($story->count, "comment", "comments") ." ". t("attached to story") ." 'id\">". check_output($story->subject) ."':
  • ";