From 68a893fe11cc6fa8e8a2a372180a3fd2ad722d18 Mon Sep 17 00:00:00 2001 From: Jesse Weaver Date: Mon, 3 Jun 2013 13:22:57 -0600 Subject: [PATCH] Bug 9300 - filtering Export (MARC) data by accession date does not work Small typo in query construction, fixed. To test: 1) Try filtering a MARC export using "Start date" 2) Notice the lack of filtering 3) Apply patch 4) Try export again, records are filtered by dateaccessioned Signed-off-by: Cedric Vita Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 5cf5da12ef8667513d2f6fb494c6997cbe82899b) Signed-off-by: Tomas Cohen Arazi --- tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/export.pl b/tools/export.pl index d634419106..d083137c0d 100755 --- a/tools/export.pl +++ b/tools/export.pl @@ -518,7 +518,7 @@ sub construct_query { my $branch = $params->{branch}; my $start_callnumber = $params->{start_callnumber}; my $end_callnumber = $params->{end_callnumber}; - my $start_accession = $params->{star_accession}; + my $start_accession = $params->{start_accession}; my $end_accession = $params->{end_accession}; my $itemtype = $params->{itemtype}; my $items_filter = -- 2.39.5