added ordering by ID to tiix

This commit is contained in:
Luxferre
2024-10-24 14:40:11 +03:00
parent ae5fc16973
commit 3bbbdca05f
+1 -1
View File
@@ -141,7 +141,7 @@ proc tiix_viewecho {} {
append query { AND (`body` LIKE $tiix_filter_regex OR `subj` LIKE $tiix_filter_regex) }
}
if {$tiix_order_byid eq 1} {
append query { ORDER BY `is` }
append query { ORDER BY `id` }
} else {
append query { ORDER BY `timestamp` }
}