From 5cf5da12ef8667513d2f6fb494c6997cbe82899b 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 --- tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/export.pl b/tools/export.pl index 0e05e3a61a..40c3b9b8a1 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