From 07ec496a8ea20e90da5a9e5b49a96b6e76690498 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 27 May 2014 18:52:44 +0000 Subject: [PATCH] Decode stored favorite before parsing it, fixes missing umlauts --- 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 c18e9b9992..6a95167240 100644 --- a/phpgwapi/js/jsapi/app_base.js +++ b/phpgwapi/js/jsapi/app_base.js @@ -351,7 +351,7 @@ var AppJS = Class.extend( if (matches && matches.length > 1 && matches[2] !== undefined) { event.stopImmediatePropagation(); - self.setState.call(self, JSON.parse(matches[2])); + self.setState.call(self, JSON.parse(decodeURI(matches[2]))); return false; } })