From 2170507af3edb44973e565d117499b6fd9c61e14 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 15 Sep 2010 00:27:55 -0600 Subject: [PATCH] forgot to sort by name --- inc/class.tc.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class.tc.inc.php b/inc/class.tc.inc.php index ac8fd70..13fd2d5 100644 --- a/inc/class.tc.inc.php +++ b/inc/class.tc.inc.php @@ -3570,7 +3570,7 @@ class tc $header_row.= "Location"; $table_data = ""; - $sql = "SELECT * FROM tc_presidency where valid=1 GROUP BY indiv"; + $sql = "SELECT * FROM tc_presidency where valid=1 GROUP BY indiv ORDER BY name ASC"; $this->db->query($sql,__LINE__,__FILE__); $i=0; while ($this->db->next_record()) { -- 2.34.1