From 56e38fa2f9e432adf233e5a7dffeaee15c8f737d Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Mon, 20 Aug 2007 15:45:58 +0200 Subject: [PATCH] Modifying AddBiblio in order to fix some encoding bugs we had when modifying or adding a biblio. Signed-off-by: Chris Cormack --- C4/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 38b5a3968d..05527c883e 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -3863,7 +3863,7 @@ sub ModBiblioMarc { $sth = $dbh->prepare( "update biblioitems set marc=?,marcxml=? where biblionumber=?"); - $sth->execute( $record->as_usmarc(), $record->as_xml_record(), + $sth->execute( $record->as_usmarc(), $record->as_xml_record($encoding), $biblionumber ); $sth->finish; return $biblionumber; -- 2.39.2