Merge pull request #3859 from civicrm/revert-3799-patch-1
[civicrm-core.git] / CRM / Contribute / Form / SearchContribution.php
index a0dbe9d3b382c4728b735f0e26ccce299ad35293..e7341b5f04ec35a0a4b3f401971840b8ac00cd9c 100644 (file)
@@ -1,34 +1,34 @@
 <?php
 /*
- +--------------------------------------------------------------------+
| CiviCRM version 4.3                                                |
- +--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2013                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
- |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
- +--------------------------------------------------------------------+
 +--------------------------------------------------------------------+
 | CiviCRM version 4.5                                                |
 +--------------------------------------------------------------------+
 | Copyright CiviCRM LLC (c) 2004-2014                                |
 +--------------------------------------------------------------------+
 | This file is a part of CiviCRM.                                    |
 |                                                                    |
 | CiviCRM is free software; you can copy, modify, and distribute it  |
 | under the terms of the GNU Affero General Public License           |
 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
 |                                                                    |
 | CiviCRM is distributed in the hope that it will be useful, but     |
 | WITHOUT ANY WARRANTY; without even the implied warranty of         |
 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
 | See the GNU Affero General Public License for more details.        |
 |                                                                    |
 | You should have received a copy of the GNU Affero General Public   |
 | License and the CiviCRM Licensing Exception along                  |
 | with this program; if not, contact CiviCRM LLC                     |
 | at info[AT]civicrm[DOT]org. If you have questions about the        |
 | 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-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -47,9 +47,9 @@ class CRM_Contribute_Form_SearchContribution extends CRM_Core_Form {
 
     $this->add('text', 'title', ts('Find'), $attributes);
 
-        $financial_account = CRM_Contribute_PseudoConstant::financialType( );
-        foreach($financial_account as $contributionId => $contributionName) {
-            $this->addElement('checkbox', "financial_type_id[$contributionId]", 'Financial Type', $contributionName);
+    $financial_account = CRM_Contribute_PseudoConstant::financialType( );
+    foreach($financial_account as $contributionId => $contributionName) {
+      $this->addElement('checkbox', "financial_type_id[$contributionId]", 'Financial Type', $contributionName);
     }
 
     CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
@@ -68,7 +68,7 @@ class CRM_Contribute_Form_SearchContribution extends CRM_Core_Form {
     $parent = $this->controller->getParent();
     $parent->set('searchResult', 1);
     if (!empty($params)) {
-            $fields = array( 'title', 'financial_type_id', 'campaign_id' );
+      $fields = array( 'title', 'financial_type_id', 'campaign_id' );
       foreach ($fields as $field) {
         if (isset($params[$field]) &&
           !CRM_Utils_System::isNull($params[$field])