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

(-)a/circ/circulation.pl (-1 / +1 lines)
Lines 648-654 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber}); Link Here
648
$template->param( picture => 1 ) if $patron_image;
648
$template->param( picture => 1 ) if $patron_image;
649
649
650
if ( C4::Context->preference("ExportCircHistory") ) {
650
if ( C4::Context->preference("ExportCircHistory") ) {
651
    $template->param(csv_profiles => [ Koha::CsvProfiles->search ]);
651
    $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
652
}
652
}
653
653
654
my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
654
my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
(-)a/members/moremember.pl (-2 / +1 lines)
Lines 328-334 if (C4::Context->preference('EnhancedMessagingPreferences')) { Link Here
328
}
328
}
329
329
330
if ( C4::Context->preference("ExportCircHistory") ) {
330
if ( C4::Context->preference("ExportCircHistory") ) {
331
    $template->param(csv_profiles => [ Koha::CsvProfiles->search ]);
331
    $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
332
}
332
}
333
333
334
# in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
334
# in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
335
- 

Return to bug 15498