remove unused parameter

This commit is contained in:
Art4 2024-11-28 08:26:26 +00:00
parent a0da648214
commit 8f66cbee91

View file

@ -155,12 +155,7 @@ class Addon
@include_once($addon_file_path);
if (function_exists($addon . '_install')) {
$func = $addon . '_install';
// Addon webdav_storage has an unused but required parameter.
// @TODO: Remove $param after the required parameter is removed.
// See https://github.com/friendica/friendica-addons/pull/1364
$param = null;
$func($param);
$func();
}
DI::config()->set('addons', $addon, [