From 67d2f59818490ec9d95ee65ea2c03e11500886cd Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Tue, 3 Aug 2010 15:40:25 +1200 Subject: [PATCH] Bug 5081 - let the ISBN be saved on new manual orders --- acqui/addorder.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/acqui/addorder.pl b/acqui/addorder.pl index 2ab5252..10a7ea9 100755 --- a/acqui/addorder.pl +++ b/acqui/addorder.pl @@ -196,7 +196,7 @@ if ( $orderinfo->{quantity} ne '0' ) { "biblio.title" => "$$orderinfo{title}", "biblio.author" => "$$orderinfo{author}", "biblio.seriestitle" => $$orderinfo{series} ? $$orderinfo{series} : "", - "biblioitems.isbn" => $$orderinfo{isbn} ? $$orderinfo{isbn} : "", + "biblioitems.isbn" => $$orderinfo{ISBN} ? $$orderinfo{ISBN} : "", "biblioitems.publishercode" => $$orderinfo{publishercode} ? $$orderinfo{publishercode} : "", "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "", }); -- 1.7.0.4