diff --git a/core/module/theme/theme.php b/core/module/theme/theme.php index a76379b4..c58effe8 100644 --- a/core/module/theme/theme.php +++ b/core/module/theme/theme.php @@ -652,7 +652,9 @@ class theme extends common { $zipFilename = $this->getInput('themeManageImport', helper::FILTER_STRING_SHORT, true); $data = $this->import(self::FILE_DIR.'source/' . $zipFilename); - + if ($data['success']) { + header("Refresh:0"); + } // Valeurs en sortie $this->addOutput([ 'notification' => $data['notification'], @@ -710,6 +712,7 @@ class theme extends common { // traitement de l'erreur $notification = $success ? 'Le thème a été importé' : 'Erreur lors de l\'extraction, vérifiez les permissions.'; + } else { // pas une archive de thème $success = false;