Move loading of all the apps to setting the active navigation entry.

We can't do the loading before matching the route, because some routes
need to do the loading after matching of the route. For example the
navigation detection of the app settings page.
This commit is contained in:
Bart Visscher 2012-11-30 12:47:40 +01:00
parent 9717cdb42e
commit 8ce3aca331
2 changed files with 2 additions and 1 deletions

View File

@ -253,6 +253,8 @@ class OC_App{
* highlighting the current position of the user.
*/
public static function setActiveNavigationEntry( $id ) {
// load all the apps, to make sure we have all the navigation entries
self::loadApps();
self::$activeapp = $id;
return true;
}

View File

@ -512,7 +512,6 @@ class OC{
return;
}
try {
OC_App::loadApps();
OC::getRouter()->match(OC_Request::getPathInfo());
return;
} catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {