From 0d037efd358c5516466c5df99e565d5fd98d5a74 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 8 Feb 2012 10:45:53 -0500 Subject: [PATCH] Bug 7018 - need all acq permissions to search Single line fix. Changes permissions required for histsearch.pl from requiring * for acquisitions to only requiring group_manage, order_manage, and order_receive Signed-off-by: Nicole C. Engard Signed-off-by: Paul Poulain --- acqui/histsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/histsearch.pl b/acqui/histsearch.pl index ff68599f45..cd3e444670 100755 --- a/acqui/histsearch.pl +++ b/acqui/histsearch.pl @@ -77,7 +77,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( query => $input, type => "intranet", authnotrequired => 0, - flagsrequired => { acquisition => 1 }, + flagsrequired => { acquisition => 'group_manage', acquisition => 'order_manage', acquisition => 'order_receive' }, debug => 1, } ); -- 2.39.5