From 2b37a7e8602e51b17c64aba7b1435684f791dde3 Mon Sep 17 00:00:00 2001 From: Fridolin Somers <fridolin.somers@biblibre.com> Date: Wed, 7 May 2014 17:58:45 +0200 Subject: [PATCH] Bug 12211 - Wrong home link in bootstrap opac-auth In bootstrap opac-auth.tt, the link to "Home" in breadcrumbs leads to #, it should lead to opac-main.pl like in all other pages. Test plan : - Use boostrap opac theme - Go to cgi-bin/koha/opac-user.pl when not logged => without patch, clicking on Home does not change the page => with patch, clicking on Home leads to opac-main.pl --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt index e031d90..5efd5c7 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt @@ -14,7 +14,7 @@ <div class="main"> <ul class="breadcrumb"> - <li><a href="#">Home</a> <span class="divider">›</span></li> + <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> <li>Log in</li> </ul> -- 1.9.1