summaryrefslogtreecommitdiffstats
path: root/htdocs
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2007-08-16 13:34:39 +0200
committerTobi Oetiker <tobi@oetiker.ch>2007-08-16 13:34:39 +0200
commit67f512ec9cd208c05a6a37599f0073fcba266999 (patch)
treebfe1b3e59b003a4be0ac8073082ea2da0ba15205 /htdocs
parenta7db0e688693f175f4812da932aea2598fa9af60 (diff)
downloadsmokeping-67f512ec9cd208c05a6a37599f0073fcba266999.tar.gz
smokeping-67f512ec9cd208c05a6a37599f0073fcba266999.tar.xz
we are only dealing with uri componentes, so decode everything ...
Diffstat (limited to 'htdocs')
-rw-r--r--htdocs/js/smokeping_zoom.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/js/smokeping_zoom.js b/htdocs/js/smokeping_zoom.js
index ff2d88d..eb972ce 100644
--- a/htdocs/js/smokeping_zoom.js
+++ b/htdocs/js/smokeping_zoom.js
@@ -54,7 +54,7 @@ function urlObjGetUrlParameterValue(parameter) {
/*++++++++++++++++++++ isoDateToJS +++++++++++++++++++++++++++++++++++++*/
function ISODateToJS(rawisodate) {
- var decode = decodeURI(rawisodate);
+ var decode = decodeURIComponent(rawisodate);
if (decode == "now") {
return new Date();
}