From: Owen Leonard <owen@balawis.leonard.fam>
Date: Wed, 15 Sep 2010 06:27:55 +0000 (-0600)
Subject: forgot to sort by name
X-Git-Tag: release_1_0_0~40
X-Git-Url: http://git.pippins.net/%27%20.%20%24this-%3Ephpgw_js_url%20.%20%27/jscalendar/static/gitweb.css?a=commitdiff_plain;h=2170507af3edb44973e565d117499b6fd9c61e14;p=eq%2F.git

forgot to sort by name
---

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.= "<th width=$location_width><font size=-2>Location</th>";
 		$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()) {