From 9c9ebe8f2f2b47f79265de7ad44ca1efb997a089 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 15 Sep 2008 22:11:41 +0000 Subject: [PATCH] had order_by clause in the wrong part of the query git-svn-id: svn://svn.open-ils.org/ILS/trunk@10601 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/support-scripts/generate_circ_notices.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/support-scripts/generate_circ_notices.pl b/Open-ILS/src/support-scripts/generate_circ_notices.pl index cb47d21d45..d00740f7a7 100755 --- a/Open-ILS/src/support-scripts/generate_circ_notices.pl +++ b/Open-ILS/src/support-scripts/generate_circ_notices.pl @@ -192,10 +192,10 @@ sub generate_notice_set { {stop_fines => {'not in' => ["LOST","LONGOVERDUE","CLAIMSRETURNED"]}}, {stop_fines => undef} ], - due_date => {between => [$start_date, $end_date]}, - order_by => {circ => ['usr', 'circ_lib']} + due_date => {between => [$start_date, $end_date]} } - } + }, + order_by => {circ => ['usr', 'circ_lib']} }; # if a circ duration is defined for this type of notice -- 2.11.0