Browse Source

Don't order by time()

pull/40/head
Savetheinternet 13 years ago
parent
commit
2b68ddaff0
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1367,7 +1367,7 @@
$memcached->delete("threadindex_{$board['uri']}_{$id}");
}
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`time`", $board['uri']));
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id`", $board['uri']));
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error($query));

Loading…
Cancel
Save