mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Merge pull request #14141 from MrPetovan/bug/14045-addon-unregistration
Add support for absolute file paths when removing addon
This commit is contained in:
commit
5b55ba2176
1 changed files with 2 additions and 1 deletions
|
@ -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)]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue