CRM-12527 - Set http headers in CMS-compatible way
[civicrm-core.git] / CRM / Contact / Page / CustomSearch.php
index 80875354d74387e5129c32ee9deed2404389dc52..4f326ffe62bcc202d67ff395f401639fd16654bb 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$
  *
  */
 class CRM_Contact_Page_CustomSearch extends CRM_Core_Page {
 
   /**
-   * The action links that we need to display for the browse screen
+   * The action links that we need to display for the browse screen.
    *
    * @var array
-   * @static
    */
   static $_links = NULL;
 
@@ -79,8 +78,8 @@ ORDER By  v.weight
   /**
    * Browse all custom searches.
    *
-   * @return content of the parents run method
-   *
+   * @return mixed
+   *   content of the parents run method
    */
   public function browse() {
     $rows = self::info();
@@ -102,4 +101,5 @@ ORDER By  v.weight
     $this->assign('action', $action);
     return $this->browse();
   }
+
 }