From 930ce855f8b1e68687e9caa6d1e0bc7410e8c55d Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sun, 28 Jul 2019 00:02:51 +0200 Subject: [PATCH] Use BaseObject in auth_ejabberd because of static dependencies inside ExAuth --- bin/auth_ejabberd.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index 1f7ddefc61..a097febbce 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -32,6 +32,8 @@ * */ +use Friendica\App\Mode; +use Friendica\BaseObject; use Friendica\Util\ExAuth; if (sizeof($_SERVER["argv"]) == 0) { @@ -52,8 +54,9 @@ require dirname(__DIR__) . '/vendor/autoload.php'; $dice = new \Dice\Dice(); $dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php'); +BaseObject::setDependencyInjection($dice); -$appMode = $dice->create(\Friendica\App\Mode::class); +$appMode = $dice->create(Mode::class); if ($appMode->isNormal()) { $oAuth = new ExAuth();