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

(-)a/circ/circulation.pl (-1 / +1 lines)
Lines 662-668 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber}); Link Here
662
$template->param( picture => 1 ) if $patron_image;
662
$template->param( picture => 1 ) if $patron_image;
663
663
664
if ( C4::Context->preference("ExportCircHistory") ) {
664
if ( C4::Context->preference("ExportCircHistory") ) {
665
    $template->param(csv_profiles => [ Koha::CsvProfiles->search ]);
665
    $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
666
}
666
}
667
667
668
my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
668
my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
(-)a/members/moremember.pl (-2 / +1 lines)
Lines 324-330 if (C4::Context->preference('EnhancedMessagingPreferences')) { Link Here
324
}
324
}
325
325
326
if ( C4::Context->preference("ExportCircHistory") ) {
326
if ( C4::Context->preference("ExportCircHistory") ) {
327
    $template->param(csv_profiles => [ Koha::CsvProfiles->search ]);
327
    $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
328
}
328
}
329
329
330
# in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
330
# in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
331
- 

Return to bug 15498