diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-23 22:32:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-23 22:32:01 +0000 |
commit | c5ea4026c49314a736cc460b05d0a90a28a2307e (patch) | |
tree | 56b39050acc62d64594acfd11bb6db9f43ce99f0 | |
parent | 3d0f6b3032abdb53fcf43790f8ee57ad5a323522 (diff) | |
download | brdo-c5ea4026c49314a736cc460b05d0a90a28a2307e.tar.gz brdo-c5ea4026c49314a736cc460b05d0a90a28a2307e.tar.bz2 |
- small update to display the section in alphabetical order
-rw-r--r-- | modules/section.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/section.module b/modules/section.module index adaaec524..3ef7331f6 100644 --- a/modules/section.module +++ b/modules/section.module @@ -79,7 +79,7 @@ function section_display() { $dump = $_section[dump]; // Perform query: - $result = db_query("SELECT * FROM sections"); + $result = db_query("SELECT * FROM sections ORDER BY name"); // Generate output: $output .= "<FORM ACTION=\"admin.php?mod=section\" METHOD=\"post\">\n"; |