Bug 29514: Remove extraneous HTML entity from breadcrumbs
The template file for ILL requests has a small typo in the breadcrumbs section: there exists an extra › HTML entity after "Home". This patch fixes that. Test plan: 1) Access the ILL requests module, and notice how an extra character is displayed after "Home" in the breadcrumbs. 2) Apply this patch. 3) Refresh the page -- the extra character is no longer displayed. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
2aff87cecd
commit
543be89b41
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
|
||||
<ol>
|
||||
<li>
|
||||
<a href="/cgi-bin/koha/mainpage.pl">Home</a> ›
|
||||
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
|
||||
</li>
|
||||
|
||||
[% IF query_type == 'create' %]
|
||||
|
|
Loading…
Reference in a new issue