From 3bbbdca05fda21709ca72fa319ea1210d2fc58b2 Mon Sep 17 00:00:00 2001 From: Luxferre Date: Thu, 24 Oct 2024 14:40:11 +0300 Subject: [PATCH] added ordering by ID to tiix --- tiix.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiix.tcl b/tiix.tcl index 9578c36..e025188 100755 --- a/tiix.tcl +++ b/tiix.tcl @@ -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` } }