mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Fix contacts with ampersands in their name will fail in mailto function
This commit is contained in:
@ -45,7 +45,7 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
|
||||
var hashes = uri.slice(uri.indexOf('?') + 1).split('&');
|
||||
for(var i = 0; i < hashes.length; i++)
|
||||
{
|
||||
index = hashes[i].split('=');
|
||||
index = hashes[i].replace(/__AMPERSAND__/g, '&').split('=');
|
||||
match.push(index[0]);
|
||||
match[index[0]] = index[1];
|
||||
}
|
||||
|
Reference in New Issue
Block a user