From b7cdff6fa5521a12b419a2ae907e2ed6f1bc809c Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 17 Jun 2014 14:21:28 +0000 Subject: [PATCH] js/history: do not remove special params We used to do this to blacklist certain parameters to not trigger heavvy actions twice when navigating through history. We also do never want to see such parameters in our address bar. This conflicts with our slightly more complicated new filter URLs, unless we are able to handle them on client side this is disabled for now. IMO it should be handled server-side and eventually invol- ving one more redirect. --- public/js/icinga/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/history.js b/public/js/icinga/history.js index 3aac07347..ccf8c0498 100644 --- a/public/js/icinga/history.js +++ b/public/js/icinga/history.js @@ -79,7 +79,7 @@ // TODO: I'd prefer to have the rightmost URL first if ('undefined' !== typeof cUrl) { - cUrl = icinga.utils.removeUrlParams(cUrl, blacklist); + // TODO: solve this on server side cUrl = icinga.utils.removeUrlParams(cUrl, blacklist); if (url === '') { url = cUrl; } else {