@@ -, +, @@ auth --- C4/Auth_with_Shibboleth.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/C4/Auth_with_Shibboleth.pm +++ a/C4/Auth_with_Shibboleth.pm @@ -49,6 +49,9 @@ sub login_shib_url { my ($query) = @_; my $param = $protocol . C4::Context->preference('OPACBaseURL') . $query->script_name(); + if ( $query->query_string() ) { + $param = $param . '%3F' . $query->query_string(); + } my $uri = $protocol . C4::Context->preference('OPACBaseURL') . "/Shibboleth.sso/Login?target=$param"; return $uri; } --