X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FLogging%2FReportDetail.php;h=7196dd8ce3191e6ccd382a9f61703ab8982dfb72;hb=e22d01cd3d4016e392df7b0b76a713adffbb2b6d;hp=afefe3926cb6f8a8c36588a4547d4ba4766dfe10;hpb=077ca50b270853d56436386ed968d678badbd1f2;p=civicrm-core.git diff --git a/CRM/Logging/ReportDetail.php b/CRM/Logging/ReportDetail.php index afefe3926c..7196dd8ce3 100644 --- a/CRM/Logging/ReportDetail.php +++ b/CRM/Logging/ReportDetail.php @@ -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'); } }