Merge pull request #4983 from colemanw/CRM-15842
[civicrm-core.git] / CRM / Mailing / Page / Confirm.php
index 1c59f3ba8509c05dea2b1b38816f1cbb3a9f83e2..7d3fbcedaaf8e7ecb70a9b179a55a7cc1b6b37e8 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -39,10 +39,10 @@ class CRM_Mailing_Page_Confirm extends CRM_Core_Page {
    */
   public function run() {
     CRM_Utils_System::addHTMLHead('<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">');
-    
-    $contact_id   = CRM_Utils_Request::retrieve('cid', 'Integer', CRM_Core_DAO::$_nullObject);
+
+    $contact_id = CRM_Utils_Request::retrieve('cid', 'Integer', CRM_Core_DAO::$_nullObject);
     $subscribe_id = CRM_Utils_Request::retrieve('sid', 'Integer', CRM_Core_DAO::$_nullObject);
-    $hash         = CRM_Utils_Request::retrieve('h', 'String', CRM_Core_DAO::$_nullObject);
+    $hash = CRM_Utils_Request::retrieve('h', 'String', CRM_Core_DAO::$_nullObject);
 
     if (!$contact_id ||
       !$subscribe_id ||
@@ -66,4 +66,5 @@ class CRM_Mailing_Page_Confirm extends CRM_Core_Page {
 
     return parent::run();
   }
+
 }