From 0d77acbab62698c2cf6b5f8dde27dd3f1d56b769 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 20 Apr 2010 15:35:44 +0200 Subject: [PATCH] Need some special handling for @ chars in urls. --- horde/js/dhtmlHistory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/js/dhtmlHistory.js b/horde/js/dhtmlHistory.js index 5ce30f95c..49681aa50 100644 --- a/horde/js/dhtmlHistory.js +++ b/horde/js/dhtmlHistory.js @@ -303,7 +303,7 @@ Horde.dhtmlHistory = { var hash = this.getCurrentLocation(); // See if there has been a change or there is no hash location - if (hash == this.currentLocation || Object.isUndefined(hash)) { + if (hash.replace(/@/, '%40') == this.currentLocation || Object.isUndefined(hash)) { return; } -- 2.11.0