diff options
author | plegall <plg@piwigo.org> | 2013-11-01 10:05:36 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-11-01 10:05:36 +0000 |
commit | 27821debcdef64703eff0d34c167d5d793cf886f (patch) | |
tree | 60ac44f79cf36e5c8712500471c5a94f6eca4185 /admin/include/functions_install.inc.php | |
parent | e5a1fa340ff7c03d970f1f0c6d61892be6645b03 (diff) |
feature 2994: only activate elegant and smartpocket themes during install
git-svn-id: http://piwigo.org/svn/trunk@25278 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/functions_install.inc.php')
-rw-r--r-- | admin/include/functions_install.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions_install.inc.php b/admin/include/functions_install.inc.php index e4d447eef..f2c934047 100644 --- a/admin/include/functions_install.inc.php +++ b/admin/include/functions_install.inc.php @@ -79,7 +79,7 @@ function activate_core_themes() $themes = new themes(); foreach ($themes->fs_themes as $theme_id => $fs_theme) { - if (in_array($theme_id, array('elegant', 'Sylvia', 'clear', 'dark', 'smartpocket'))) + if (in_array($theme_id, array('elegant', 'smartpocket'))) { $themes->perform_action('activate', $theme_id); } |