From e13a25ffce82f1b692353596697b098548e2162d Mon Sep 17 00:00:00 2001 From: HWFord <54360213+HWFord@users.noreply.github.com> Date: Fri, 28 Nov 2025 15:57:35 +0100 Subject: [PATCH] fixes #2464 don't activate smartpocket by default --- admin/include/functions_install.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/include/functions_install.inc.php b/admin/include/functions_install.inc.php index f667545b1..3a3aeb19f 100644 --- a/admin/include/functions_install.inc.php +++ b/admin/include/functions_install.inc.php @@ -65,7 +65,7 @@ function activate_core_themes() $themes = new themes(); foreach ($themes->fs_themes as $theme_id => $fs_theme) { - if (in_array($theme_id, array('modus', 'smartpocket'))) + if (in_array($theme_id, array('modus'))) { $themes->perform_action('activate', $theme_id); }