Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent cleanUrl from adding equal sign to query parameters #612

Closed
wants to merge 1 commit into from

Commits on Feb 28, 2021

  1. Prevent cleanUrl from adding equal sign to query parameters

    According to RFE3986 the query component may be any form, not necessarily
    in the form of key=value pairs. The existing implementation of cleanUrl
    added an equal sign (=) to data not in the form of key=value pairs. This
    lead to infinite redirects in a HEAD request in the SLUB API and is fixed
    now to leave query data without an equal sign as is.
    
    Move tests for cleanUrl from ApacheBaseApiTest to BaseApiTest as it's a
    method of the BaseApi.
    StefRe committed Feb 28, 2021
    Configuration menu
    Copy the full SHA
    c7c848c View commit details
    Browse the repository at this point in the history