Fix config is null on hooks
authorLuke Stewart <luke@stewart.geek.nz>
Tue, 9 May 2023 01:22:15 +0000 (13:22 +1200)
committerLuke Stewart <luke@stewart.geek.nz>
Tue, 9 May 2023 01:22:15 +0000 (13:22 +1200)
CRM/Utils/System/Drupal8.php
CRM/Utils/System/Standalone.php

index b19ec3017e1c4b63b7c2c9d9ae39712fc03de9dd..5536e59344247eff4aad1ee17d418f25de7fcf2b 100644 (file)
@@ -433,6 +433,7 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
 
     // We need to call the config hook again, since we now know
     // all the modules that are listening on it (CRM-8655).
+    $config = CRM_Core_Config::singleton();
     CRM_Utils_Hook::config($config);
 
     if ($loadUser) {
index e9b7355a2837f6494831ae1fcaea74fec3959a3b..66409148b1d560ded18f83303ad5c898ee00843a 100644 (file)
@@ -288,6 +288,7 @@ class CRM_Utils_System_Standalone extends CRM_Utils_System_Base {
 
     // We need to call the config hook again, since we now know
     // all the modules that are listening on it (CRM-8655).
+    $config = CRM_Core_Config::singleton();
     CRM_Utils_Hook::config($config);
 
     if ($loadUser) {