From e074db78e7e06f6d73036d81f94340f816c7ea5b Mon Sep 17 00:00:00 2001 From: Allen Benny Date: Mon, 15 Jan 2024 21:37:20 +0530 Subject: [PATCH] Use a dynamic list :stars: --- includes/Services/PluginService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Services/PluginService.php b/includes/Services/PluginService.php index a49a4f82b..34549cdaf 100644 --- a/includes/Services/PluginService.php +++ b/includes/Services/PluginService.php @@ -164,7 +164,7 @@ public static function configure_activation_transient() { 'option_active_plugins', function ( $plugins ) { if ( '1' === get_transient( Options::get_option_name( 'filter_active_plugins' ) ) ) { - return array( container()->plugin()->basename ); + return Plugins::get_active_plugins_list(); } return $plugins; }