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 <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
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;