From ef13e9a12f02cb4792576bf2d3933ed7709a144c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 11 Apr 2011 12:48:36 -0400 Subject: [PATCH] Fix for Bug 6160, my details not showing tabs Content-Type: text/plain; charset="utf-8" --- koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 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 c6bc33a..8e394e2 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt @@ -95,7 +95,7 @@ $.tablesorter.addParser({ [% FOREACH BORROWER_INF IN BORROWER_INFO %]

Hello, [% BORROWER_INF.firstname %] [% BORROWER_INF.surname %] (Click here if you're not [% BORROWER_INF.title %] [% BORROWER_INF.firstname %] [% BORROWER_INF.surname %])

- [% IF ( BORROWER_INF.patronupdate ) %]

Thank you!

Your corrections have been submitted to the library, and a staff member will update your record as soon as possible.

[% END %] + [% IF ( patronupdate ) %]

Thank you!

Your corrections have been submitted to the library, and a staff member will update your record as soon as possible.

[% END %] [% IF ( BORROWER_INF.flagged ) %] @@ -121,9 +121,9 @@ $.tablesorter.addParser({
  • Checked Out
  • [% IF ( overdues_count ) %]
  • Overdue
  • [% END %] [% IF ( OPACFinesTab ) %] - [% IF ( amountoverfive ) %]
  • Fines
  • [% END %] - [% IF ( amountoverzero ) %]
  • Fines
  • [% END %] - [% IF ( amountlessthanzero ) %]
  • Credits
  • [% END %] + [% IF ( BORROWER_INF.amountoverfive ) %]
  • Fines
  • [% END %] + [% IF ( BORROWER_INF.amountoverzero ) %]
  • Fines
  • [% END %] + [% IF ( BORROWER_INF.amountlessthanzero ) %]
  • Credits
  • [% END %] [% END %] [% IF ( waiting_count ) %][% IF ( BORROWER_INF.atdestination ) %]
  • Waiting
  • [% END %][% END %] [% IF ( reserves_count ) %]
  • Holds
  • [% END %] @@ -260,11 +260,11 @@ $.tablesorter.addParser({ [% END %] [% END %] [% END %] -[% IF ( ISSUE.OPACFinesTab ) %] +[% IF ( OPACFinesTab ) %] [% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %] [% END %] - [% IF ( ISSUE.OPACMySummaryhtml ) %] - [% ISSUE.MySummaryhtml %] + [% IF ( OPACMySummaryhtml ) %] + [% MySummaryhtml %] [% END %] [% END %] @@ -345,7 +345,7 @@ $.tablesorter.addParser({ [% ELSE %]No renewals left [% END %] [% END %][% END %] -[% IF ( OVERDUE.OPACFinesTab ) %] +[% IF ( OPACFinesTab ) %] [% IF ( OVERDUE.charges ) %]Yes[% ELSE %]No[% END %] [% END %] @@ -391,7 +391,7 @@ $.tablesorter.addParser({ [% RESERVE.reservedate %] [% IF ( RESERVE.expirationdate ) %][% RESERVE.expirationdate %][% ELSE %]Never Expires[% END %] [% RESERVE.branch %] - [% IF ( RESERVE.showpriority ) %] + [% IF ( showpriority ) %] [% RESERVE.priority %] [% END %] -- 1.7.3