UserPostQueries.php: fix post search ordering

This commit is contained in:
Zankaria 2025-07-08 21:38:00 +02:00
parent 360161b1fc
commit 1767c7b316

View file

@ -240,7 +240,7 @@ class UserPostQueries {
return [];
}
$sql = "SELECT * FROM `posts_$board` WHERE " . \implode(' AND ', $where_acc) . ' LIMIT :limit';
$sql = "SELECT * FROM `posts_$board` WHERE " . \implode(' AND ', $where_acc) . ' ORDER BY `time` DESC LIMIT :limit';
$query = $this->pdo->prepare($sql);
for ($i = 0; $i < \count($subject); $i++) {