commit 3bbbdca05fda21709ca72fa319ea1210d2fc58b2
parent ae5fc1697343cab6d00c526ece04224490c875b2
Author: Luxferre <lux@ferre>
Date:   Thu, 24 Oct 2024 14:40:11 +0300
added ordering by ID to tiix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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` }
   }