Auto-remove duplicated, allowed themes during reload

This commit is contained in:
Philipp Holzer 2019-08-17 20:00:11 +02:00
parent 7e82f8dc2e
commit d39a6ba444
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 2 additions and 0 deletions

View File

@ -25,10 +25,12 @@ class Index extends BaseAdminModule
switch ($_GET['action']) {
case 'reload':
$allowed_themes = array_unique($allowed_themes);
foreach ($allowed_themes as $theme) {
Theme::uninstall($theme);
Theme::install($theme);
}
Theme::setAllowedList($allowed_themes);
info('Themes reloaded');
break;