From c686a7dd3b9de4279bbf24c8a64f1e0adad44dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20Hud=C3=A1k?= Date: Thu, 5 Dec 2019 15:23:47 +0100 Subject: [PATCH] Unescape '=' character (#3102) * Unescape '=' character * fix abaplint --- src/ui/zcl_abapgit_html_action_utils.clas.abap | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/zcl_abapgit_html_action_utils.clas.abap b/src/ui/zcl_abapgit_html_action_utils.clas.abap index a36ed9e43..62d2d2859 100644 --- a/src/ui/zcl_abapgit_html_action_utils.clas.abap +++ b/src/ui/zcl_abapgit_html_action_utils.clas.abap @@ -357,6 +357,7 @@ CLASS ZCL_ABAPGIT_HTML_ACTION_UTILS IMPLEMENTATION. * todo, more to be added here REPLACE ALL OCCURRENCES OF '%3F' IN rv_string WITH '?'. + REPLACE ALL OCCURRENCES OF '%3D' IN rv_string WITH '='. ENDMETHOD. ENDCLASS.