Bugzilla – Attachment 151108 Details for
Bug 33595
Bug 26628 broke authorization for tools start page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33595: (bug 26628 follow-up) Fix authorization for tools-home.pl
Bug-33595-bug-26628-follow-up-Fix-authorization-fo.patch (text/plain), 1.39 KB, created by
David Cook
on 2023-05-12 00:17:25 UTC
(
hide
)
Description:
Bug 33595: (bug 26628 follow-up) Fix authorization for tools-home.pl
Filename:
MIME Type:
Creator:
David Cook
Created:
2023-05-12 00:17:25 UTC
Size:
1.39 KB
patch
obsolete
>From 0b85648577e2525a5dd524d8a584e8e490916dfb Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 11 May 2023 12:05:04 +0200 >Subject: [PATCH] Bug 33595: (bug 26628 follow-up) Fix authorization for > tools-home.pl > >If you log into the OPAC as a user with no flags, you can see a restricted view of >/cgi-bin/koha/tools/tools-home.pl instead of seeing the login screen. > >Test plan: >Use a patron with catalogue permission only >Login and access the tools home page >=> redirected to the login screen > >Add a club sub permission >Login and access the tools home page >=> You see the tools home page with the clubs link > >Add a tool sub permission, remove club >Login and access the tools home page >=> You see the tools home page with the relevant link > >Signed-off-by: David Cook <dcook@prosentient.com.au> >--- > tools/tools-home.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/tools/tools-home.pl b/tools/tools-home.pl >index 8ae7953842..ed7f823485 100755 >--- a/tools/tools-home.pl >+++ b/tools/tools-home.pl >@@ -29,7 +29,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > template_name => "tools/tools-home.tt", > query => $query, > type => "intranet", >- flagsrequired => [ tools => '*', clubs => '*' ], >+ flagsrequired => [ { tools => '*' }, { clubs => '*' } ], > } > ); > >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33595
:
151065
|
151108
|
151114