FROM {$serendipity['dbPrefix']}comments c,
{$serendipity['dbPrefix']}entries e
WHERE e.id = c.entry_id AND type = 'NORMAL' AND subscribed = 'true'
- GROUP BY e.id, c.email, e.title
+ GROUP BY e.id, c.email, e.title, e.timestamp
ORDER BY postings DESC
LIMIT $max_items");
FROM {$serendipity['dbPrefix']}comments c,
{$serendipity['dbPrefix']}entries e
WHERE e.id = c.entry_id AND type = 'NORMAL'
- GROUP BY e.id, e.title
+ GROUP BY e.id, e.title, e.timestamp
ORDER BY postings DESC
LIMIT $max_items");
FROM {$serendipity['dbPrefix']}comments c,
{$serendipity['dbPrefix']}entries e
WHERE e.id = c.entry_id AND type = 'TRACKBACK'
- GROUP BY e.id, e.title
+ GROUP BY e.timestamp, e.id, e.title
ORDER BY postings DESC
LIMIT $max_items");