diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-11-04 18:18:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 18:18:32 +0100 |
commit | 13960b69da2593dcfb0cbaef222ee8b9a33142c0 (patch) | |
tree | ca43ed0f4daa75e6b03b137b3ad650c8b721efa7 /core | |
parent | 64bfd4bbeb10e07bd2133a97c50175a156d43d61 (diff) | |
parent | 964dc0a95520efbf876e0113bfafc294f4f4b322 (diff) | |
download | nextcloud-server-13960b69da2593dcfb0cbaef222ee8b9a33142c0.tar.gz nextcloud-server-13960b69da2593dcfb0cbaef222ee8b9a33142c0.zip |
Merge pull request #17509 from nextcloud/fix/application-singleton
Fix Application instances created multiple times
Diffstat (limited to 'core')
-rw-r--r-- | core/routes.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/routes.php b/core/routes.php index 829fa8576c8..0e6efae59b5 100644 --- a/core/routes.php +++ b/core/routes.php @@ -34,7 +34,8 @@ use OC\Core\Application; -$application = new Application(); +/** @var Application $application */ +$application = \OC::$server->query(Application::class); $application->registerRoutes($this, [ 'routes' => [ ['name' => 'lost#email', 'url' => '/lostpassword/email', 'verb' => 'POST'], |