Auto-remove duplicated, allowed themes during reload
This commit is contained in:
parent
7e82f8dc2e
commit
d39a6ba444
1 changed files with 2 additions and 0 deletions
|
@ -25,10 +25,12 @@ class Index extends BaseAdminModule
|
||||||
|
|
||||||
switch ($_GET['action']) {
|
switch ($_GET['action']) {
|
||||||
case 'reload':
|
case 'reload':
|
||||||
|
$allowed_themes = array_unique($allowed_themes);
|
||||||
foreach ($allowed_themes as $theme) {
|
foreach ($allowed_themes as $theme) {
|
||||||
Theme::uninstall($theme);
|
Theme::uninstall($theme);
|
||||||
Theme::install($theme);
|
Theme::install($theme);
|
||||||
}
|
}
|
||||||
|
Theme::setAllowedList($allowed_themes);
|
||||||
|
|
||||||
info('Themes reloaded');
|
info('Themes reloaded');
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue