From e37dc9aeac46c5c58f1e0562789f7995abdaf510 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Tue, 20 Jun 2017 16:31:43 -0400 Subject: [PATCH] LP#1693560: Remove permission check for retrieve tag table function The permission check for the retrieve tag table function was preventing users who don't have the UPDATE_MARC permssion from performing searches in the staff catalog. Since there's nothing confidential in the table, this commit removes that permission check. Thanks to Jason Boyer for finding the source of the problem. Signed-off-by: Kathy Lussier Signed-off-by: Galen Charlton --- Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm index f48ff7a571..211e7c88c5 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm @@ -1654,7 +1654,6 @@ sub retrieve_tag_table { my( $self, $conn, $auth, $marc_format, $marc_record_type ) = @_; my $e = new_editor( authtoken=>$auth, xact=>1 ); return $e->die_event unless $e->checkauth; - return $e->die_event unless $e->allowed('UPDATE_MARC', $e->requestor->ws_ou); my $field_list_only = ($self->api_name =~ /\.field_list\./) ? 1 : 0; my $context_ou; -- 2.11.0