summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-11-15 14:48:06 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2012-11-15 14:48:18 +0100
commite642d18e26f3a6448ac33b2f34341d9b3ee6baae (patch)
treea884467222d0f607540f44c90cdddd1b1063e66a /lib
parentbf20021b628e5e00f825203ac37f4878f97a4a2e (diff)
downloadnextcloud-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.php1
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) {