@@ -, +, @@ - capitalization fix "Checked out" - display new tabs only when feature is activated - fixes a qa script complaint about POD in Items.pm --- C4/Items.pm | 5 +---- .../prog/en/modules/members/readingrec.tt | 7 +++++-- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/C4/Items.pm +++ a/C4/Items.pm @@ -2571,10 +2571,7 @@ sub GetAnalyticsCount { =head2 GetItemHolds -=over 4 -$holds = &GetItemHolds($biblionumber, $itemnumber); - -=back + $holds = &GetItemHolds($biblionumber, $itemnumber); This function return the count of holds with $biblionumber and $itemnumber --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt @@ -1,4 +1,5 @@ [% USE KohaDates %] +[% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] Circulation History for [% INCLUDE 'patron-title.inc' %] [% INCLUDE 'doc-head-close.inc' %] @@ -55,11 +56,13 @@
+ [% IF Koha.Preference('On-site checkouts') %] + [% END %]
@@ -117,7 +120,7 @@ [% IF issue.returndate %] [% issue.returndate | $KohaDates %] [% ELSE %] - Checked Out + Checked out [% END %] --