CRM-16587 - revert of some changes of 379902.
authorJohan Vervloet <johanv@johanv.org>
Wed, 16 Dec 2015 15:37:01 +0000 (16:37 +0100)
committerJohan Vervloet <johanv@johanv.org>
Wed, 16 Dec 2015 15:41:22 +0000 (16:41 +0100)
I reverted some changes that are not needed, so that it is easier
to see what exactly changed in the pull request.

----------------------------------------
* CRM-16587: Action menu is not available on selected records on a Custom search
  https://issues.civicrm.org/jira/browse/CRM-16587

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

index f750c20f541de4d599fadc270ec61aa4ff54a5ef..d77ac6e077477ed5130bd79b7d52ec4c877b88b9 100644 (file)
@@ -112,10 +112,10 @@ class CRM_Contact_Form_Search_Custom_PostalMailing extends CRM_Contact_Form_Sear
       // also need to select contact_a.id. This is because of the patch we
       // use for CRM-16587.
       $selectClause = "
-DISTINCT contact_a.id as contact_id,
+DISTINCT contact_a.id  as contact_id  ,
 contact_a.id,
-contact_a.contact_type,
-contact_a.sort_name,
+contact_a.contact_type  as contact_type,
+contact_a.sort_name     as sort_name,
 address.street_address,
 state_province.name
 ";