Add support for absolute file paths when removing addon

- This handles a rare case where absolute addon file paths were saved to the hook table
pull/14141/head
Hypolite Petovan 2024-05-10 11:24:37 -04:00
parent f566c52624
commit 42c3faa450
1 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,8 @@ class Addon
$func();
}
Hook::delete(['file' => 'addon/' . $addon . '/' . $addon . '.php']);
// Handles both relative and absolute file paths
Hook::delete(['`file` LIKE ?', "%addon/$addon/$addon.php"]);
unset(self::$addons[array_search($addon, self::$addons)]);
}