From: Jan Schneider Date: Tue, 20 Apr 2010 13:35:44 +0000 (+0200) Subject: Need some special handling for @ chars in urls. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0d77acbab62698c2cf6b5f8dde27dd3f1d56b769;p=horde.git Need some special handling for @ chars in urls. --- 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; }