Auto-remove duplicated, allowed themes during reload

2022.09-rc
Philipp Holzer 2019-08-17 20:00:11 +02:00
rodzic 7e82f8dc2e
commit d39a6ba444
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D8365C3D36B77D90
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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;