Bugzilla – Attachment 51391 Details for
Bug 16492
Checkouts ( and possibly checkins and other actions ) will use the patron home branch as the logged in library
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16492 - Checkouts ( and possibly checkins and other actions ) will use the patron home branch as the logged in library
Bug-16492---Checkouts--and-possibly-checkins-and-o.patch (text/plain), 3.08 KB, created by
Kyle M Hall (khall)
on 2016-05-10 16:41:07 UTC
(
hide
)
Description:
Bug 16492 - Checkouts ( and possibly checkins and other actions ) will use the patron home branch as the logged in library
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-05-10 16:41:07 UTC
Size:
3.08 KB
patch
obsolete
>From 04c05c139ad67af4cf2acbf2b63e8ffba7695971 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Tue, 10 May 2016 16:36:03 +0000 >Subject: [PATCH] Bug 16492 - Checkouts ( and possibly checkins and other > actions ) will use the patron home branch as the logged in library > >Bug 14507 introduced the use of checkpw in C4::SIP::ILS::Patron so that >non-Koha internal authentication processes would be able to function via >SIP ( LDAP et al ). > >The problem is that checkpw changes the userenv to that of the patron! >This is not usually an issue in Koha because most of the time that >patron running through checkpw is the one to be logged in. > >Aside from SIP2 the only other area where this may be an issue is in SCO >when using SelfCheckoutByLogin. > >Test Plan: >1) On master, check out an item to a patron via SIP2 >2) Note the checkout lists the item as having been checked out > from the patron's home library not matter which library is was > supposed to be checked out from. >3) Apply this patch >4) Re-checkout the item >5) The item should now be checked out as if it was checked out from > the library as defined in the SIP configuration file. >--- > C4/Auth.pm | 8 ++++---- > C4/SIP/ILS/Patron.pm | 2 +- > 2 files changed, 5 insertions(+), 5 deletions(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 3081f07..281ad1e 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -1734,7 +1734,7 @@ sub get_session { > } > > sub checkpw { >- my ( $dbh, $userid, $password, $query, $type ) = @_; >+ my ( $dbh, $userid, $password, $query, $type, $no_set_userenv ) = @_; > $type = 'opac' unless $type; > if ($ldap) { > $debug and print STDERR "## checkpw - checking LDAP\n"; >@@ -1774,7 +1774,7 @@ sub checkpw { > } > > # INTERNAL AUTH >- return checkpw_internal(@_) >+ return checkpw_internal( $dbh, $userid, $password, $no_set_userenv) > } > > sub checkpw_internal { >@@ -1808,7 +1808,7 @@ sub checkpw_internal { > if ( checkpw_hash( $password, $stored_hash ) ) { > > C4::Context->set_userenv( "$borrowernumber", $userid, $cardnumber, >- $firstname, $surname, $branchcode, $branchname, $flags ); >+ $firstname, $surname, $branchcode, $branchname, $flags ) unless $no_set_userenv; > return 1, $cardnumber, $userid; > } > } >@@ -1825,7 +1825,7 @@ sub checkpw_internal { > if ( checkpw_hash( $password, $stored_hash ) ) { > > C4::Context->set_userenv( $borrowernumber, $userid, $cardnumber, >- $firstname, $surname, $branchcode, $branchname, $flags ); >+ $firstname, $surname, $branchcode, $branchname, $flags ) unless $no_set_userenv; > return 1, $cardnumber, $userid; > } > } >diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm >index d61b097..36f5a23 100644 >--- a/C4/SIP/ILS/Patron.pm >+++ b/C4/SIP/ILS/Patron.pm >@@ -201,7 +201,7 @@ sub check_password { > > my $dbh = C4::Context->dbh; > my $ret = 0; >- ($ret) = checkpw( $dbh, $self->{userid}, $pwd ); >+ ($ret) = checkpw( $dbh, $self->{userid}, $pwd, my $query, my $type, my $no_set_userenv = 1 ); > return $ret; > } > >-- >2.1.4
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 16492
:
51390
|
51391
|
51744
|
51745
|
51768
|
51797
|
52188
|
52189
|
52190