diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2012-11-15 14:48:06 +0100 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2012-11-15 14:48:18 +0100 |
commit | e642d18e26f3a6448ac33b2f34341d9b3ee6baae (patch) | |
tree | a884467222d0f607540f44c90cdddd1b1063e66a /lib | |
parent | bf20021b628e5e00f825203ac37f4878f97a4a2e (diff) | |
download | nextcloud-server-e642d18e26f3a6448ac33b2f34341d9b3ee6baae.tar.gz nextcloud-server-e642d18e26f3a6448ac33b2f34341d9b3ee6baae.zip |
When using routing in apps, no apps are loaded in the left navigation tree. To fix this: load apps for matching a request
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php index c97700b3dbf..66d2d400285 100644 --- a/lib/base.php +++ b/lib/base.php @@ -488,6 +488,7 @@ class OC{ return; } try { + OC_App::loadApps(); OC::getRouter()->match(OC_Request::getPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { |