Merge pull request #9589 from nextcloud/bugfix/noid/allow-empty-route-navigation

Allow empty route for navigation entries
pull/9670/head
Morris Jobke 7 years ago committed by GitHub
commit 1924fed83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/private/NavigationManager.php

@ -289,7 +289,7 @@ class NavigationManager implements INavigationManager {
$id = isset($nav['id']) ? $nav['id'] : $app;
$order = isset($nav['order']) ? $nav['order'] : 100;
$type = isset($nav['type']) ? $nav['type'] : 'link';
$route = $this->urlGenerator->linkToRoute($nav['route']);
$route = $nav['route'] !== '' ? $this->urlGenerator->linkToRoute($nav['route']) : '';
$icon = isset($nav['icon']) ? $nav['icon'] : 'app.svg';
foreach ([$icon, "$app.svg"] as $i) {
try {

Loading…
Cancel
Save