Fix display error in breadcrumbs

This commit is contained in:
Alexander Haase 2018-02-19 22:56:54 +01:00
parent 95119011db
commit d612dca71e

View file

@ -59,8 +59,8 @@ function breadcrumbs()
for (var i = 0; i < crumbs.length; i++)
{
path += crumbs[i] + '/';
nav +=
crumb((i == 0) ? 'Home' : crumbs[i], path, (i == crumbs.length - 1));
nav += crumb((i == 0) ? 'Home' : decodeURIComponent(crumbs[i]), path,
(i == crumbs.length - 1));
}
/* Update the breadcrumbs element's contents with the breadcrumbs navigation