From 11c2af6f9c3e866b6f232a03d381e19a207643cb Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Thu, 15 Apr 2021 17:07:55 +0100 Subject: [PATCH] fix: correct constant name --- class/dashboard/layout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/dashboard/layout.php b/class/dashboard/layout.php index db37dad..b3d24e0 100644 --- a/class/dashboard/layout.php +++ b/class/dashboard/layout.php @@ -209,7 +209,7 @@ abstract class MCI_Footnotes_Layout_Engine { * automated update of version number for cache busting. * No need to use '-styles' in the handle, as '-css' is appended automatically. */ - if ( true === C_BOOL_CSS_PRODUCTION_MODE ) { + if ( true === PRODUCTION_ENV ) { wp_register_style( 'mci-footnotes-admin', plugins_url( 'footnotes/css/settings.min.css' ), array(), C_STR_FOOTNOTES_VERSION );