mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
Remove unneeded decodeURI() to avoid problems with addressbook advanced search
This commit is contained in:
parent
ba911171de
commit
46c0817743
@ -769,7 +769,7 @@ var AppJS = Class.extend(
|
||||
var favorite = {}
|
||||
if (matches && matches.length > 1 && matches[2] !== undefined)
|
||||
{
|
||||
favorite = JSON.parse(decodeURI(matches[2]));
|
||||
favorite = JSON.parse(matches[2]);
|
||||
}
|
||||
if(!favorite || jQuery.isEmptyObject(favorite)) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user