From e492c2e074013276c27f5d59d622f5dee347e2bf 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 --- 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 38b93bce71f..f9ba592b3e3 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.2