CRM-14920 One more fix for ZipCodeRange custom search.
authorJohan Vervloet <johanv@johanv.org>
Thu, 17 Dec 2015 14:40:10 +0000 (15:40 +0100)
committerJohan Vervloet <johanv@johanv.org>
Thu, 17 Dec 2015 14:40:10 +0000 (15:40 +0100)
----------------------------------------
* CRM-14920: Custom Searches do not honor user sort order
  https://issues.civicrm.org/jira/browse/CRM-14920

CRM/Contact/Form/Search/Custom/PostalMailing.php
CRM/Contact/Form/Search/Custom/ZipCodeRange.php

index d77ac6e077477ed5130bd79b7d52ec4c877b88b9..d36f66062b849e2ef9bc08d9409fbae8ac7e8494 100644 (file)
@@ -103,7 +103,7 @@ class CRM_Contact_Form_Search_Custom_PostalMailing extends CRM_Contact_Form_Sear
   ) {
     if ($justIDs) {
       $selectClause = "contact_a.id as contact_id";
-      //$sort = 'contact_a.id';
+      // Don't change sort order when $justIDs is TRUE, see CRM-14920.
     }
     else {
       // YOU NEED to select contact_a.id as contact_id, if you want to be able
index d6f0fb3e49e19a810e2f0b9ee1342968ec3043bd..40d59fca71b0acd113909947f2a53c5ad558589e 100644 (file)
@@ -119,7 +119,7 @@ class CRM_Contact_Form_Search_Custom_ZipCodeRange extends CRM_Contact_Form_Searc
   ) {
     if ($justIDs) {
       $selectClause = "contact_a.id as contact_id";
-      $sort = "contact_a.id";
+      // Don't change sort order when $justIDs is TRUE, see CRM-14920.
     }
     else {
       // We select contact_a.id twice. Once as contact_a.id,