ordering the member dropdown by name
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 15 Nov 2017 16:34:45 +0000 (11:34 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 15 Nov 2017 16:34:45 +0000 (11:34 -0500)
changing the order of the member dropdown by name in the job edit and new job page

models/admin/jobs/index.php

index 8007212..7f70a04 100644 (file)
@@ -90,7 +90,7 @@ class GlmMembersAdmin_jobs_index extends GlmDataJobs
     public function modelAction($actionData = false)
     {
         $members     = new GlmDataMembers($this->wpdb, $this->config);
-        $member_list = $members->getList();
+        $member_list = $members->getList(false, 'name');
         
         $job_titles = new GlmDataJobTitles($this->wpdb,$this->config);