bugfix, unescape colon (#6132)

This commit is contained in:
Lars Hvam 2023-03-05 14:56:52 +01:00 committed by GitHub
parent a2278c94da
commit 06443c1908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -346,6 +346,7 @@ CLASS zcl_abapgit_html_action_utils IMPLEMENTATION.
rv_string = iv_string.
* todo, more to be added here
REPLACE ALL OCCURRENCES OF '%3A' IN rv_string WITH ':' IGNORING CASE.
REPLACE ALL OCCURRENCES OF '%3F' IN rv_string WITH '?' IGNORING CASE.
REPLACE ALL OCCURRENCES OF '%3D' IN rv_string WITH '=' IGNORING CASE.
REPLACE ALL OCCURRENCES OF '%2F' IN rv_string WITH '/' IGNORING CASE.