From 978952b56b996c3d4ba85c7ebd2222a01c2439d0 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 10 Apr 2012 12:51:23 -0400 Subject: [PATCH] Bug 7876 - Followup - Fix span tag position, add fine amount spans. Content-Type: text/plain; charset="utf-8" Span was outside, the if statement, could possible cause problems with jQuery customizations, moved span to inside the conditional. Also added span for the fine amount itself, so that it may be re-used for jQuery customizations. Signed-off-by: Liz Rea Passed tests, spans appear to be correct. --- koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt index 1e2b5cc..9729c7c 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt @@ -84,7 +84,7 @@ $.tablesorter.addParser({ [% IF ( BORROWER_INF.warndeparture ) %]
Please note: Your card will expire on [% BORROWER_INF.warndeparture %]. Please contact the library if you wish to renew your subscription. - [% IF ( BORROWER_INF.returnbeforeexpiry ) %] Also note that you must return all checked out items before your card expires.[% END %] + [% IF ( BORROWER_INF.returnbeforeexpiry ) %] Also note that you must return all checked out items before your card expires.[% END %]
[% END %] @@ -101,9 +101,9 @@ $.tablesorter.addParser({
  • Please note: Your library card has been marked as lost or stolen. If this is an error, please contact the library.
  • [% END %] [% IF ( renewal_blocked_fines ) && ( OpacRenewalAllowed ) %] -
  • Please note: Since you have more than [% renewal_blocked_fines %] in fines, you cannot renew your books online. Please pay your fines if you wish to renew your books.
  • +
  • Please note: Since you have more than [% renewal_blocked_fines %] in fines, you cannot renew your books online. Please pay your fines if you wish to renew your books.
  • [% ELSIF ( renewal_blocked_fines ) %] -
  • Please note: You have more than [% renewal_blocked_fines %] in fines.
  • +
  • Please note: You have more than [% renewal_blocked_fines %] in fines.
  • [% END %] [% END %] -- 1.7.2.5