diff options
author | 2014-10-16 12:01:17 +0200 | |
---|---|---|
committer | 2014-10-16 12:01:17 +0200 | |
commit | 7c163edb63fcdccc7b232b3b24fe398a363d00a7 (patch) | |
tree | 6574506cc618b8e60ff88a170599031a2df32b57 /pyload/webui/themes/default/js/static/mootools-core.js | |
parent | [Webui] Fix wrong trafficleft format (diff) | |
download | pyload-7c163edb63fcdccc7b232b3b24fe398a363d00a7.tar.xz |
New theme Estate
Diffstat (limited to 'pyload/webui/themes/default/js/static/mootools-core.js')
-rw-r--r-- | pyload/webui/themes/default/js/static/mootools-core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/webui/themes/default/js/static/mootools-core.js b/pyload/webui/themes/default/js/static/mootools-core.js index db83850fd..e73f1df1e 100644 --- a/pyload/webui/themes/default/js/static/mootools-core.js +++ b/pyload/webui/themes/default/js/static/mootools-core.js @@ -5732,8 +5732,8 @@ JSON.secure = true; JSON.decode = function(string, secure){ if (!string || typeOf(string) != 'string') return null; - - if (secure == null) secure = JSON.secure; + + if (secure == null) secure = JSON.secure; if (secure){ if (JSON.parse) return JSON.parse(string); if (!JSON.validate(string)) throw new Error('JSON could not decode the input; security is enabled and the value is not secure.'); |