[REF][PHP8.2] Fix Deprectation notice due to dynamic properties on the Contribute...
authorSeamus Lee <seamuslee001@gmail.com>
Fri, 14 Jul 2023 23:39:29 +0000 (09:39 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Fri, 14 Jul 2023 23:39:29 +0000 (09:39 +1000)
CRM/Report/Form/Contribute/History.php

index 997c47208ac55cee17363b84045b4ebbd7257ce6..900454e192d7168b2be19dd63c6354d647d6e5ac 100644 (file)
@@ -20,6 +20,12 @@ class CRM_Report_Form_Contribute_History extends CRM_Report_Form {
    */
   protected $_relationshipColumns = [];
 
+  protected $_relationshipFrom = '';
+
+  protected $_relationshipWhere = '';
+
+  protected $_contributionClauses = [];
+
   protected $_customGroupExtends = [
     'Contact',
     'Individual',
@@ -397,8 +403,6 @@ class CRM_Report_Form_Contribute_History extends CRM_Report_Form {
 
   public function where() {
     $whereClauses = $havingClauses = $relationshipWhere = [];
-    $this->_relationshipWhere = '';
-    $this->_contributionClauses = [];
 
     foreach ($this->_columns as $tableName => $table) {
       if (array_key_exists('filters', $table)) {