Replace Frienica\Core\Addon::isApp() withi Friendica\Core\Hook::isAddonApp()

fix #6010
This commit is contained in:
fabrixxm 2018-10-23 17:27:53 +02:00
parent 1a1300f1bf
commit 035603a516
1 changed files with 1 additions and 1 deletions

View File

@ -1774,7 +1774,7 @@ class App
$privateapps = Core\Config::get('config', 'private_addons', false); $privateapps = Core\Config::get('config', 'private_addons', false);
if (Core\Addon::isEnabled($this->module) && 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 //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) { if ((!local_user()) && Core\Hook::isAddonApp($this->module) && $privateapps) {
info(Core\L10n::t("You must be logged in to use addons. ")); info(Core\L10n::t("You must be logged in to use addons. "));
} else { } else {
include_once "addon/{$this->module}/{$this->module}.php"; include_once "addon/{$this->module}/{$this->module}.php";