Fixed that URL is replaced with "undefined" in IE11 and Edge (#32529).

Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@19347 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2019-12-09 12:38:32 +00:00
parent a08977176b
commit db8cccc221

View File

@@ -412,7 +412,7 @@ function getRemoteTab(name, remote_url, url, load_always) {
//replaces current URL with the "href" attribute of the current link //replaces current URL with the "href" attribute of the current link
//(only triggered if supported by browser) //(only triggered if supported by browser)
function replaceInHistory(url) { function replaceInHistory(url) {
if ("replaceState" in window.history) { if ("replaceState" in window.history && url !== undefined) {
window.history.replaceState(null, document.title, url); window.history.replaceState(null, document.title, url);
} }
} }