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

Srdjan Jankovic srdjan at catalyst.net.nz
Thu Oct 6 03:00:19 CEST 2011


It messes up javascript default values
---
 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.6.5



More information about the Koha-patches mailing list