Sort article dates as int when presenting last article date in section display.

This commit is contained in:
Retro_Guy 2024-03-31 11:14:43 -07:00
parent 631930ea39
commit 5aef1c12a9
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ function groups_show($gruppen)
$database = $spooldir . '/articles-overview.db3';
$table = 'overview';
$overview_dbh = overview_db_open($database);
$overview_query = $overview_dbh->prepare('SELECT * FROM overview WHERE newsgroup=:newsgroup ORDER BY date DESC LIMIT 2');
$overview_query = $overview_dbh->prepare('SELECT * FROM overview WHERE newsgroup=:newsgroup ORDER BY CAST(date AS int) DESC LIMIT 2');
$overview_query->execute([
'newsgroup' => $g->name
]);