From 1be31e92c9a47a4b658a6f714889c13a95a0dcc2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 7 Mar 2012 17:39:13 +0100 Subject: [PATCH 1/1] Bug 6751: Followup: minors fixes --- .../prog/en/modules/help/members/readingrec.tt | 2 +- members/readingrec.pl | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt index 804fdfe..1b3a114 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt @@ -4,7 +4,7 @@

The circulation history tab will appear if you have set the intranetreadinghistory preference to allow it to appear. If you have the OPACPrivacy system preference set to 'Allow' and the patron has decided that the library cannot keep this information this tab will only show currently checked out items.

-

You can export the today checkin barcodes by clinking on the link above the table. It simply generates a list of barcodes.

+

You can export today's checked in barcodes by clicking on the link above the table. It simply generates a list of barcodes.

See the full documentation for Circulation History in the manual (online).

diff --git a/members/readingrec.pl b/members/readingrec.pl index d285850..d4ecf65 100755 --- a/members/readingrec.pl +++ b/members/readingrec.pl @@ -90,8 +90,7 @@ foreach my $issue (@{$issues}){ if ($input->param('op') eq 'export_barcodes') { my $borrowercardnumber = GetMember( borrowernumber => $borrowernumber )->{'cardnumber'} ; - my $delimiter = ":"; - $delimiter = "\n"; + my $delimiter = "\n"; binmode( STDOUT, ":encoding(UTF-8)"); print $input->header( -type => 'application/octet-stream', -- 1.7.7.3