Fix error causing empty INBOX listing in Firefox when using an URL with user:password specified (#5400)

pull/6833/head
Aleksander Machniak 8 years ago
parent 8e2fdee671
commit 32ddcfd3d0

@ -11,6 +11,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where message list columns could be in wrong order after column drag-n-drop and list sorting
- Don't create multipart/alternative messages with empty text/plain part (#5283)
- Wash position:fixed style in HTML mail for better security (#5264)
- Fix error causing empty INBOX listing in Firefox when using an URL with user:password specified (#5400)
RELEASE 1.1.5
-------------

@ -7338,7 +7338,11 @@ function rcube_webmail()
this.update_state = function(query)
{
if (window.history.replaceState)
window.history.replaceState({}, document.title, rcmail.url('', query));
try {
// This may throw security exception in Firefox (#5400)
window.history.replaceState({}, document.title, rcmail.url('', query));
}
catch(e) { /* ignore */ };
};
// send a http request to the server

Loading…
Cancel
Save