Bugzilla – Attachment 129722 Details for
Bug 29931
Script plugins-enable.pl should check the cookie status before running plugins
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29931: (follow-up) Similar thing in opac-patron-image.pl
Bug-29931-follow-up-Similar-thing-in-opac-patron-i.patch (text/plain), 1.02 KB, created by
Marcel de Rooy
on 2022-01-24 13:09:05 UTC
(
hide
)
Description:
Bug 29931: (follow-up) Similar thing in opac-patron-image.pl
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2022-01-24 13:09:05 UTC
Size:
1.02 KB
patch
obsolete
>From 880ce267762d28c8cd853e451ff6a5d229f8baea Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 24 Jan 2022 13:06:33 +0000 >Subject: [PATCH] Bug 29931: (follow-up) Similar thing in opac-patron-image.pl >Content-Type: text/plain; charset=utf-8 > >Although less harmful indeed. No borrowernumber, no image. >--- > opac/opac-patron-image.pl | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/opac/opac-patron-image.pl b/opac/opac-patron-image.pl >index df1efdf4ef..b1f941e099 100755 >--- a/opac/opac-patron-image.pl >+++ b/opac/opac-patron-image.pl >@@ -35,7 +35,13 @@ unless (C4::Context->preference('OPACpatronimages')) { > my $needed_flags; > my %cookies = CGI::Cookie->fetch; > my $sessid = $cookies{'CGISESSID'}->value; >+ > my ($auth_status) = check_cookie_auth($sessid, $needed_flags); >+if( $auth_status ne 'ok' ) { >+ print CGI::header( '-status' => '401' ); >+ exit 0; >+} >+ > my $borrowernumber = C4::Context->userenv->{'number'}; > > my $patron_image = Koha::Patron::Images->find($borrowernumber); >-- >2.20.1
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 29931
:
129717
|
129721
|
129722
|
129746
|
129747
|
129840
|
129841
|
129842
|
129843
|
129844
|
129845
|
131483