From ee2eb20fefd426100f5bcb5ee8aa250dc0d6119e Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Wed, 31 Oct 2012 22:10:33 +0000 Subject: [PATCH] Order WAB Awards Results ASC --- application/models/wab.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/wab.php b/application/models/wab.php index 43b8c7dc..f4d26d2b 100644 --- a/application/models/wab.php +++ b/application/models/wab.php @@ -8,6 +8,7 @@ class Wab extends CI_Model { } function get_all() { + $this->db->order_by("COL_COMMENT", "ASC"); $this->db->like('COL_COMMENT', 'WAB:'); return $this->db->get($this->config->item('table_name'));