Revert "Bug 21986: Do not escape quotation marks when cataloguing"
[koha.git] / cataloguing / addbiblio.pl
index 91f6588..6606ac2 100755 (executable)
@@ -281,6 +281,8 @@ sub create_input {
     
     my $index_subfield = CreateKey(); # create a specifique key for each subfield
 
+    $value =~ s/"/"/g;
+
     # if there is no value provided but a default value in parameters, get it
     if ( $value eq '' ) {
         $value = $tagslib->{$tag}->{$subfield}->{defaultvalue};