[Koha-patches] [PATCH] Bug 16459: Add patron to a patron card requires catalogue permission

Srdjan srdjan at catalyst.net.nz
Mon May 23 05:00:50 CEST 2016


From: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

Currently, serials => 'routing' is required, which does not make any
sense.
It's a copy/paste error when this file has been created (you can blame
me).

Note that I am not sure catalogue is the correct permission, but it's
the one used almost everywhere in this module

Test plan:
Confirm that catalogue is enough to search for patrons to add to a
patron card.

Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
---
 patroncards/add_user_search.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/patroncards/add_user_search.pl b/patroncards/add_user_search.pl
index 9bc3685..3d9f7af 100755
--- a/patroncards/add_user_search.pl
+++ b/patroncards/add_user_search.pl
@@ -35,7 +35,7 @@ my ( $template, $loggedinuser, $cookie, $staff_flags ) = get_template_and_user(
         query           => $input,
         type            => "intranet",
         authnotrequired => 0,
-        flagsrequired => { serials => 'routing' },
+        flagsrequired   => { catalogue => 1 },
     }
 );
 
-- 
2.7.4


More information about the Koha-patches mailing list