Bug 10484: serials-edit.pl not checking for barcode field before checking for barcode...
[koha_fer] / serials / routing.pl
index 5dee5ea..a95631b 100755 (executable)
@@ -62,7 +62,7 @@ if($op eq 'add'){
 if($op eq 'save'){
     my $sth = $dbh->prepare('UPDATE serial SET routingnotes = ? WHERE subscriptionid = ?');
     $sth->execute($notes,$subscriptionid);
-    my $urldate = URI::Escape::uri_escape_utf8($date_selected);
+    my $urldate = URI::Escape::uri_escape($date_selected);
     print $query->redirect("routing-preview.pl?subscriptionid=$subscriptionid&issue=$urldate");
 }