From 712f9b50646616651a1d5237a8fc6500f8777b5e Mon Sep 17 00:00:00 2001 From: Aleisha Date: Mon, 11 Apr 2016 01:45:55 +0000 Subject: [PATCH] Bug 16234: Removing 'view link' text To test: 1) Go to the Fines account of a borrower (i.e. members/boraccount.pl) 2) Notice 'View link' text is unnecessary and clutters description column 3) Apply patch and refresh page 4) Confirm 'view link' text is gone and the record title is now a link and works as expected Sponsored-by: Catalyst IT --- koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt index 09b5c67..6e85167 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -100,7 +100,7 @@ $(document).ready(function() { [% CASE %][% account.accounttype %] [%- END -%] [%- IF account.description %], [% account.description %][% END %] -  [% IF ( account.itemnumber ) %]View item [% END %][% account.title |html %] +  [% IF ( account.itemnumber ) %][% account.title |html %][% END %] [% account.note | html_line_break %] [% IF ( account.amountcredit ) %][% ELSE %][% END %][% account.amount %] [% IF ( account.amountoutstandingcredit ) %][% ELSE %][% END %][% account.amountoutstanding %] -- 1.7.10.4