Skip to content
Snippets Groups Projects
Commit d57bb70b authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #7889 from owncloud/routing-warning

Fix undefined index warning in router
parents b656c68e 9b2bb7c6
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment