Fix minor bug that disallows deletion of themes

This commit is contained in:
Dedushka 2021-01-18 22:32:20 -05:00
parent a4607fa6e6
commit f74d2a2fdc
No known key found for this signature in database
GPG Key ID: DC969A6BA7657A70
1 changed files with 1 additions and 1 deletions

View File

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