Use BaseObject in auth_ejabberd because of static dependencies inside ExAuth

This commit is contained in:
Philipp Holzer 2019-07-28 00:02:51 +02:00
부모 51d2db3998
커밋 930ce855f8
No known key found for this signature in database
GPG 키 ID: D8365C3D36B77D90
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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();