Uninstall addon when it wasn't found when accessed from admin aside

This commit is contained in:
Hypolite Petovan 2019-05-08 00:46:42 -04:00
parent f0f44dbd84
commit 5ff5325e14
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ class Details extends BaseAdminModule
$addon = $a->argv[2];
$addon = Strings::sanitizeFilePathItem($addon);
if (!is_file("addon/$addon/$addon.php")) {
notice(L10n::t('Item not found.'));
notice(L10n::t('Addon not found.'));
Addon::uninstall($addon);
$a->internalRedirect('admin/addons');
}