From: Steven Callender <[email protected]> Prior to this patch, RIS export was producing effectively empty output.
Signed-off-by: Steven Callender <[email protected]> Signed-off-by: Galen Charlton <[email protected]> --- opac/opac-export.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opac/opac-export.pl b/opac/opac-export.pl index d24ddb2..41bf81a 100755 --- a/opac/opac-export.pl +++ b/opac/opac-export.pl @@ -50,7 +50,7 @@ elsif ($format=~ /mods/) { $marc = marc2modsxml($marc); } elsif ($format =~ /ris/) { - $marc = marc2ris(MARC::Record->new_from_usmarc($marc)); + $marc = marc2ris($marc); } elsif ($format =~ /bibtex/) { $marc = marc2bibtex(C4::Biblio::GetMarcBiblio($biblionumber),$biblionumber); -- 1.7.4.1 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
