Merge pull request #11453 from colemanw/php55
[civicrm-core.git] / CRM / Logging / ReportDetail.php
index afefe3926cb6f8a8c36588a4547d4ba4766dfe10..7196dd8ce3191e6ccd382a9f61703ab8982dfb72 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2016                                |
+ | Copyright CiviCRM LLC (c) 2004-2018                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2016
+ * @copyright CiviCRM LLC (c) 2004-2018
  */
 class CRM_Logging_ReportDetail extends CRM_Report_Form {
   protected $cid;
@@ -352,14 +352,14 @@ class CRM_Logging_ReportDetail extends CRM_Report_Form {
    * Get the properties that might be in the URL.
    */
   protected function parsePropertiesFromUrl() {
-    $this->log_conn_id = CRM_Utils_Request::retrieve('log_conn_id', 'String', CRM_Core_DAO::$_nullObject);
-    $this->log_date = CRM_Utils_Request::retrieve('log_date', 'String', CRM_Core_DAO::$_nullObject);
-    $this->cid = CRM_Utils_Request::retrieve('cid', 'Integer', CRM_Core_DAO::$_nullObject);
-    $this->raw = CRM_Utils_Request::retrieve('raw', 'Boolean', CRM_Core_DAO::$_nullObject);
-
-    $this->altered_name = CRM_Utils_Request::retrieve('alteredName', 'String', CRM_Core_DAO::$_nullObject);
-    $this->altered_by = CRM_Utils_Request::retrieve('alteredBy', 'String', CRM_Core_DAO::$_nullObject);
-    $this->altered_by_id = CRM_Utils_Request::retrieve('alteredById', 'Integer', CRM_Core_DAO::$_nullObject);
+    $this->log_conn_id = CRM_Utils_Request::retrieve('log_conn_id', 'String');
+    $this->log_date = CRM_Utils_Request::retrieve('log_date', 'String');
+    $this->cid = CRM_Utils_Request::retrieve('cid', 'Integer');
+    $this->raw = CRM_Utils_Request::retrieve('raw', 'Boolean');
+
+    $this->altered_name = CRM_Utils_Request::retrieve('alteredName', 'String');
+    $this->altered_by = CRM_Utils_Request::retrieve('alteredBy', 'String');
+    $this->altered_by_id = CRM_Utils_Request::retrieve('alteredById', 'Integer');
   }
 
 }