[Koha-patches] [PATCH] [SIGNED-OFF] bug_6974: bugfix: do not create empty record before building input for new biblio

Owen Leonard oleonard at myacpl.org
Thu Oct 6 14:40:51 CEST 2011


From: Srdjan Jankovic <srdjan at catalyst.net.nz>

It messes up javascript default values

Signed-off-by: Owen Leonard <oleonard at myacpl.org>
---
 cataloguing/addbiblio.pl |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl
index ba10332..29df4a5 100755
--- a/cataloguing/addbiblio.pl
+++ b/cataloguing/addbiblio.pl
@@ -1037,10 +1037,7 @@ elsif ( $op eq "delete" ) {
         $biblionumber = "";
     }
 
-    if ( $record eq -1 ) {
-        $record = TransformHtmlToMarc( $input );
-    }
-    else {
+    if ( $record ne -1 ) {
 #FIXME: it's kind of silly to go from MARC::Record to MARC::File::XML and then back again just to fix the encoding
         eval {
             my $uxml = $record->as_xml;
-- 
1.7.3



More information about the Koha-patches mailing list