From 77a9d9397ee5df0748e24732e2e33e6dac527250 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 20 Mar 2013 14:37:40 -0400 Subject: [PATCH] Bug 9803 - question mark in cataloging not clearly a link When you hover your mouse over the MARC tag help link in cataloging the cursor doesn't change to a standard link pointer because the tag has no "href" attribute. This patch adds a dummy href, "#" so that the cursor will treat it as a link. To test, apply the patch and load the MARC editor with a blank or existing record. The "Show MARC tag documentation links" checkbox must be checked. Hover your mouse over a "?" link in any tag. The cursor should change to a pointer like it does on other links. Signoff comment: The patch works as expected. Besides the cursor change, links still work on every tab. Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt index 7e439bf..64298fa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -416,7 +416,7 @@ function Changefwk(FwkList) { [% innerloo.tag %] [% ELSE %] [% innerloo.tag %] - [% IF marcflavour != 'NORMARC' %] ?[% END %] + [% IF marcflavour != 'NORMARC' %] ?[% END %] [% END %] [% IF ( innerloo.fixedfield ) %] -- 1.7.10.4