Skip to content

Commit

Permalink
KEYCLOAK-12173 removed escaping of '&'
Browse files Browse the repository at this point in the history
  • Loading branch information
edewit authored and ssilvert committed Apr 23, 2020
1 parent 4fa2994 commit 3cdfb42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Expand Up @@ -163,8 +163,6 @@ private String getFakeClientUrl() {
// we need to use some page which host exists – Firefox is throwing exceptions like crazy if we try to load
// a page on a non-existing host, like e.g. http://non-existing-server/
// also we need to do this here as getAuthServerRoot is not ready when firing this class' constructor
return getAuthServerRoot() + "auth/non-existing-page/?foo=bar";
// TODO replace ^^ with the following once KEYCLOAK-12173 and KEYCLOAK-12189 are resolved
// return getAuthServerRoot() + "auth/non-existing-page/?foo=bar&bar=foo#anchor";
return getAuthServerRoot() + "auth/non-existing-page/?foo=bar&bar=foo#anchor";
}
}
Expand Up @@ -44,7 +44,7 @@
<#if referrer??>
var referrer = '${referrer}';
var referrerName = '${referrerName}';
var referrerUri = '${referrer_uri}';
var referrerUri = '${referrer_uri?no_esc}';
</#if>
<#if msg??>
Expand Down

0 comments on commit 3cdfb42

Please sign in to comment.