Fixed HT apps to sort families under a companionship in alphabetical order.
authorAlan Jack Pippin <ajp@pippin.(none)>
Mon, 13 Mar 2006 06:36:35 +0000 (23:36 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Mon, 13 Mar 2006 06:36:35 +0000 (23:36 -0700)
inc/class.eq.inc.php

index 3478b4c36014dcbbaeda88919dc97a9909b0c352..aa604813f5caea63353973e289acd3d4093c6bc4 100644 (file)
@@ -216,6 +216,7 @@ class eq
          
          // Get the names of the families assigned this home teaching companionship
          $sql = "SELECT * from eq_family where valid=1 AND companionship=".$unique_companionships[$j]['companionship'];
+         $sql = $sql . " ORDER BY name ASC";
          $this->db->query($sql,__LINE__,__FILE__);
          $k=0;
          while ($this->db->next_record())
@@ -441,6 +442,7 @@ class eq
        
        // Get the names of the families assigned this home teaching companionship
        $sql = "SELECT * from eq_family where valid=1 AND companionship=".$unique_companionships[$j]['companionship'];
+       $sql = $sql . " ORDER BY name ASC";
        $this->db->query($sql,__LINE__,__FILE__);
        while ($this->db->next_record())
          {