Avoid CiviCRM running full drupal cache flush, as this results in CiviCRM clobbering...
[civicrm-core.git] / CRM / Profile / Form / Search.php
index 20e36938a394421fc3dc11ffefd5368405df3bd4..b2fea5c783f25d7eeb8c19684a6291dcf6693fa3 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$
  *
  */
@@ -56,7 +56,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
   }
 
   /**
-   * Set the default form values
+   * Set the default form values.
    *
    *
    * @return array
@@ -89,7 +89,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
       }
       elseif (in_array($key, array(
         'birth_date',
-        'deceased_date'
+        'deceased_date',
       ))) {
         list($value) = CRM_Utils_Date::setDateDefaults($value);
       }
@@ -100,7 +100,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
   }
 
   /**
-   * Build the form object
+   * Build the form object.
    *
    * @return void
    */
@@ -133,4 +133,5 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
    */
   public function postProcess() {
   }
+
 }