[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 606f8e897a4af58e29f043c6dbe5409bd224f9b7

Evergreen Git git at git.evergreen-ils.org
Wed Jun 21 10:20:34 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_12 has been updated
       via  606f8e897a4af58e29f043c6dbe5409bd224f9b7 (commit)
      from  6e6fa755f5c667cc2138cfc38fea70d72112ad5b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 606f8e897a4af58e29f043c6dbe5409bd224f9b7
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Tue Jun 20 16:31:43 2017 -0400

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

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
index f48ff7a..211e7c8 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;

-----------------------------------------------------------------------

Summary of changes:
 .../src/perlmods/lib/OpenILS/Application/Cat.pm    |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list