From df8de0eb0f21470e160627edb478e5d36893eb39 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Thu, 21 Mar 2019 08:06:29 +1100 Subject: [PATCH] Try Reverting commit removing require once to see if it fixes the problem for api4 --- CRM/Core/Config.php | 1 + CRM/Core/Error.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CRM/Core/Config.php b/CRM/Core/Config.php index 320ec6d85f..2e5c7307da 100644 --- a/CRM/Core/Config.php +++ b/CRM/Core/Config.php @@ -35,6 +35,7 @@ * @copyright CiviCRM LLC (c) 2004-2019 */ +require_once 'Log.php'; require_once 'Mail.php'; require_once 'api/api.php'; diff --git a/CRM/Core/Error.php b/CRM/Core/Error.php index fc2ebe9856..163a1b44d3 100644 --- a/CRM/Core/Error.php +++ b/CRM/Core/Error.php @@ -37,6 +37,8 @@ require_once 'PEAR/ErrorStack.php'; require_once 'PEAR/Exception.php'; require_once 'CRM/Core/Exception.php'; +require_once 'Log.php'; + /** * Class CRM_Exception */ -- 2.25.1