Merge pull request #190 from dedushka1/theme-deletion-bug

Fix minor bug that disallows deletion of themes
This commit is contained in:
nonmakina 2021-01-19 16:59:50 -06:00 committed by GitHub
commit cb26f537f3

View File

@ -3219,7 +3219,7 @@ function mod_theme_uninstall($theme_name) {
// Clean cache
Cache::delete("themes");
Cache::delete("theme_settings_".$theme);
Cache::delete("theme_settings_".$theme_name);
header('Location: ?/themes', true, $config['redirect_http']);
}