CRM-11338 further fix on fee amount
[civicrm-core.git] / CRM / Dedupe / Finder.php
index 094b3996219717a193105830f0f20ca9d14e18dc..2268bf865df9c5ea731e223b561e19ed2ec34e0b 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -95,7 +95,7 @@ class CRM_Dedupe_Finder {
    * @return array
    *   matching contact ids
    */
-  static function dupesByParams(
+  public static function dupesByParams(
     $params,
     $ctype,
     $used = 'Unsupervised',
@@ -236,7 +236,7 @@ class CRM_Dedupe_Finder {
     // handle {birth,deceased}_date
     foreach (array(
                'birth_date',
-               'deceased_date'
+               'deceased_date',
              ) as $date) {
       if (!empty($fields[$date])) {
         $flat[$date] = $fields[$date];
@@ -327,4 +327,5 @@ class CRM_Dedupe_Finder {
     }
     return $params;
   }
+
 }