From: Hypolite Petovan Date: Tue, 23 Oct 2018 01:09:53 +0000 (-0400) Subject: Fix missing instance of Addon::isEnabled in App X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b6a0b686c4c0c0be301db273b192cbd6c8acbc39;p=friendica.git Fix missing instance of Addon::isEnabled in App --- diff --git a/src/App.php b/src/App.php index 081e7785e5..8cd3b74f99 100644 --- a/src/App.php +++ b/src/App.php @@ -1772,7 +1772,7 @@ class App } $privateapps = Core\Config::get('config', 'private_addons', false); - if (is_array($this->addons) && in_array($this->module, $this->addons) && file_exists("addon/{$this->module}/{$this->module}.php")) { + if (Core\Addon::isEnabled($this->module) && file_exists("addon/{$this->module}/{$this->module}.php")) { //Check if module is an app and if public access to apps is allowed or not if ((!local_user()) && Core\Addon::isApp($this->module) && $privateapps) { info(Core\L10n::t("You must be logged in to use addons. "));