fix undefined index warning in router

remotes/origin/ldap_group_count
Robin Appelman 11 years ago
parent 75d8de378c
commit 9b2bb7c6ab
  1. 2
      lib/private/route/router.php

@ -114,7 +114,7 @@ class Router implements IRouter {
}
}
foreach ($routingFiles as $app => $file) {
if (!$this->loadedApps[$app]) {
if (!isset($this->loadedApps[$app])) {
$this->loadedApps[$app] = true;
$this->useCollection($app);
require_once $file;

Loading…
Cancel
Save