From d4c8f960ddba4caad545c65265bed55a7aa2e82a Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 29 Mar 2010 10:32:27 +1300 Subject: [PATCH] Fix for acquisitions - Series title was not saving when adding new record Signed-off-by: Galen Charlton --- acqui/addorder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/addorder.pl b/acqui/addorder.pl index 48ae874ab0..2ab5252bc6 100755 --- a/acqui/addorder.pl +++ b/acqui/addorder.pl @@ -195,7 +195,7 @@ if ( $orderinfo->{quantity} ne '0' ) { { "biblio.title" => "$$orderinfo{title}", "biblio.author" => "$$orderinfo{author}", - "biblio.series" => $$orderinfo{series} ? $$orderinfo{series} : "", + "biblio.seriestitle" => $$orderinfo{series} ? $$orderinfo{series} : "", "biblioitems.isbn" => $$orderinfo{isbn} ? $$orderinfo{isbn} : "", "biblioitems.publishercode" => $$orderinfo{publishercode} ? $$orderinfo{publishercode} : "", "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "", -- 2.39.5