Merge pull request #647 from owncloud/fix_app_settings_navigation

Move loading of all the apps to setting the active navigation entry.
remotes/origin/stable5
Thomas Müller 12 years ago
commit 76625e9ba5
  1. 2
      lib/app.php
  2. 1
      lib/base.php

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

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

Loading…
Cancel
Save