diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2007-08-16 13:34:39 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2007-08-16 13:34:39 +0200 |
commit | 67f512ec9cd208c05a6a37599f0073fcba266999 (patch) | |
tree | bfe1b3e59b003a4be0ac8073082ea2da0ba15205 /htdocs/js/smokeping_zoom.js | |
parent | a7db0e688693f175f4812da932aea2598fa9af60 (diff) | |
download | smokeping-67f512ec9cd208c05a6a37599f0073fcba266999.tar.gz smokeping-67f512ec9cd208c05a6a37599f0073fcba266999.tar.xz |
we are only dealing with uri componentes, so decode everything ...
Diffstat (limited to 'htdocs/js/smokeping_zoom.js')
-rw-r--r-- | htdocs/js/smokeping_zoom.js | 2 |
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(); } |