View | Details | Raw Unified | Return to bug 6751
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
<p>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.</p>
5
<p>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.</p>
6
6
7
<p>You can export the today checkin barcodes by clinking on the link above the table. It simply generates a list of barcodes.</p>
7
<p>You can export today's checked in barcodes by clicking on the link above the table. It simply generates a list of barcodes.</p>
8
8
9
<p><strong>See the full documentation for Circulation History in the <a href="http://manual.koha-community.org/3.6/en/patroninformation.html#circhistory">manual</a> (online).</strong></p>
9
<p><strong>See the full documentation for Circulation History in the <a href="http://manual.koha-community.org/3.6/en/patroninformation.html#circhistory">manual</a> (online).</strong></p>
10
10
(-)a/members/readingrec.pl (-3 / +1 lines)
Lines 90-97 foreach my $issue (@{$issues}){ Link Here
90
90
91
if ($input->param('op') eq 'export_barcodes') {
91
if ($input->param('op') eq 'export_barcodes') {
92
    my $borrowercardnumber = GetMember( borrowernumber => $borrowernumber )->{'cardnumber'} ;
92
    my $borrowercardnumber = GetMember( borrowernumber => $borrowernumber )->{'cardnumber'} ;
93
    my $delimiter = ":";
93
    my $delimiter = "\n";
94
    $delimiter = "\n";
95
    binmode( STDOUT, ":encoding(UTF-8)");
94
    binmode( STDOUT, ":encoding(UTF-8)");
96
    print $input->header(
95
    print $input->header(
97
        -type       => 'application/octet-stream',
96
        -type       => 'application/octet-stream',
98
- 

Return to bug 6751