Fix Whitespace issues
authorSeamus Lee <seamuslee001@gmail.com>
Thu, 25 Jun 2015 01:10:17 +0000 (01:10 +0000)
committerSeamus Lee <seamuslee001@gmail.com>
Thu, 25 Jun 2015 01:10:17 +0000 (01:10 +0000)
CRM/Contact/Form/Search/Custom/PostalMailing.php
CRM/Contact/Form/Search/Custom/Proximity.php
CRM/Contact/Form/Search/Custom/RandomSegment.php
CRM/Contact/Form/Search/Custom/Sample.php

index 317cfc05e69614edeac45a09511ce909643df5a3..bb26d40c6ebbc1becf2a5f527bbe47d86a719ca9 100644 (file)
@@ -147,11 +147,11 @@ LEFT JOIN civicrm_state_province state_province ON  state_province.id = address.
                                        (select cr.contact_id_b from civicrm_relationship cr where (cr.contact_id_a = cgc.contact_id AND (cr.relationship_type_id = 7 OR cr.relationship_type_id = 6))),
                                         cgc.contact_id )";
     $clause[] = "contact_a.contact_type IN ('Individual','Household')";
-    
+
     if ($this->_aclWhere) {
       $clause[] = " {$this->_aclWhere} ";
     }
-    
+
     if (!empty($clause)) {
       $where = implode(' AND ', $clause);
     }
index 47633813d69ea77e57f3e63cdf62302af08318a8..ee97c6c1dce8f07644f183ec867d836bd09f903e 100644 (file)
@@ -253,11 +253,11 @@ AND cgc.group_id = {$this->_group}
 
     $where .= " AND contact_a.is_deleted != 1 ";
     $where .= "{$this->_where}";
-    
+
     if ($this->_aclWhere) {
       $where .= " AND {$this->_aclWhere} ";
     }
-    
+
     return $this->whereClause($where, $params);
   }
 
index 0e972f2404b60c467ebacc4e6c8da96f0973f8c5..e9b2a9e9fb10169835730c825df80d44c11767df 100644 (file)
@@ -342,11 +342,11 @@ class CRM_Contact_Form_Search_Custom_RandomSegment extends CRM_Contact_Form_Sear
    */
   public function where($includeContactIDs = FALSE) {
     $where = '(1)';
-    
+
     if ($this->_aclWhere) {
       $where = " AND {$this->_aclWhere} ";
     }
-    
+
     return '(1)';
   }
 
index 6f11d7830f4619833788ebb87a2f839387aed5d3..85ce543136d799be3ae8f37e24a9e10935b47004 100644 (file)
@@ -189,7 +189,7 @@ LEFT JOIN civicrm_state_province state_province ON state_province.id = address.s
       $params[$count] = array($state, 'Integer');
       $clause[] = "state_province.id = %{$count}";
     }
-    
+
     if ($this->_aclWhere) {
       $clause[] = " AND {$this->_aclWhere} ";
     }