projects
/
web
/
MichiganTrailMaps.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
563137f
)
update search form
author
Steve Sutton
<steve@gaslightmedia.com>
Mon, 8 Jul 2013 20:07:30 +0000
(20:07 +0000)
committer
Steve Sutton
<steve@gaslightmedia.com>
Mon, 8 Jul 2013 20:07:30 +0000
(20:07 +0000)
Order the counties by name
Toolkit/Members/UserSearchForm.php
patch
|
blob
|
history
diff --git
a/Toolkit/Members/UserSearchForm.php
b/Toolkit/Members/UserSearchForm.php
index
9c42e0e
..
bb22c83
100644
(file)
--- a/
Toolkit/Members/UserSearchForm.php
+++ b/
Toolkit/Members/UserSearchForm.php
@@
-815,7
+815,8
@@
class Toolkit_Members_UserSearchForm
SELECT DISTINCT county
FROM member
WHERE active
- AND county is not null)";
+ AND county is not null)
+ ORDER BY county_name";
$stmt = $this->dbh->prepare($sql);
$stmt->execute();
while ($row = $stmt->fetch()) {