You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that the regular expression on this line would "eat" both the ticket parameter and all parameters that follow. e.g. a url like &ticket=foo and &ticket=foo&next=bar would have bar "eaten".
localfunction_uri_without_ticket()
returnngx.var.scheme.."://" ..ngx.var.host..ngx.re.sub(ngx.var.request_uri, "[?&]ticket=.*", "")
end
(I'm happy to submit a pull request proposing a fix.)
The text was updated successfully, but these errors were encountered:
I believe that the regular expression on this line would "eat" both the
ticket
parameter and all parameters that follow. e.g. a url like&ticket=foo
and&ticket=foo&next=bar
would havebar
"eaten".(I'm happy to submit a pull request proposing a fix.)
The text was updated successfully, but these errors were encountered: