From e6fbb9b5c1d5d548a8cf8956717e84c55e3e855f Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 24 Apr 2024 14:25:40 +0000 Subject: [PATCH] Bug 36575: (bug 34893 follow-up) Return patron when autocreating in Shibboleth Signed-off-by: Marcel de Rooy (cherry picked from commit f6fe24bdd8f72cdf09111a93d0ca0a114b5ee570) Signed-off-by: Fridolin Somers --- C4/Auth_with_shibboleth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth_with_shibboleth.pm b/C4/Auth_with_shibboleth.pm index 38b93bce71..f9ba592b3e 100644 --- a/C4/Auth_with_shibboleth.pm +++ b/C4/Auth_with_shibboleth.pm @@ -172,7 +172,7 @@ sub _autocreate { C4::Letters::SendQueuedMessages( { message_id => $message_id } ) if $message_id; } } - return ( 1, $patron->cardnumber, $patron->userid ); + return ( 1, $patron->cardnumber, $patron->userid, $patron ); } sub _sync { -- 2.39.5