From 1ee1a934f8f89450577a6f9fe4f850620bffe74b Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 28 Jul 2015 14:49:47 +0000 Subject: [PATCH] Remove another unneeded decodeURI() to avoid problems with addressbook advanced search --- phpgwapi/js/jsapi/app_base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/jsapi/app_base.js b/phpgwapi/js/jsapi/app_base.js index 113b26980a..5809dd5322 100644 --- a/phpgwapi/js/jsapi/app_base.js +++ b/phpgwapi/js/jsapi/app_base.js @@ -386,7 +386,7 @@ var AppJS = Class.extend( if (matches && matches.length > 1 && matches[2] !== undefined) { event.stopImmediatePropagation(); - self.setState.call(self, JSON.parse(decodeURI(matches[2]))); + self.setState.call(self, JSON.parse(matches[2])); return false; } })