From 3feab4a74706a30bff9c2cf905316d1459ef4aa9 Mon Sep 17 00:00:00 2001 From: Christopher Allford Date: Fri, 18 Mar 2022 15:51:55 -0700 Subject: [PATCH] Fixed Deprecated Notes Inclusion --- plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php b/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php index f99a06e4ba9..26aa4f775e2 100644 --- a/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php +++ b/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php @@ -72,7 +72,7 @@ class FeaturePlugin { // Load the page controller functions file first to prevent fatal errors when disabling WooCommerce Admin. $this->define_constants(); require_once WC_ADMIN_ABSPATH . '/includes/react-admin/page-controller-functions.php'; - require_once WC_ADMIN_ABSPATH . '/src/Notes/DeprecatedNotes.php'; + require_once WC_ADMIN_ABSPATH . '/src/Admin/Notes/DeprecatedNotes.php'; require_once WC_ADMIN_ABSPATH . '/includes/react-admin/core-functions.php'; require_once WC_ADMIN_ABSPATH . '/includes/react-admin/feature-config.php'; require_once WC_ADMIN_ABSPATH . '/includes/react-admin/wc-admin-update-functions.php';