2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

console.js: escape the filter (Forum #74028)

git-svn-id: https://svn.fhem.de/fhem/trunk@14668 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-07-08 12:06:55 +00:00
parent 32bf072586
commit 14d7549b5b

View File

@ -77,7 +77,8 @@ consFill()
FW_closeConn();
var query = "?XHR=1"+
"&inform=type=raw;withLog="+withLog+";filter="+consFilter+consFType+
"&inform=type=raw;withLog="+withLog+";filter="+
encodeURIComponent(consFilter)+consFType+
"&timestamp="+new Date().getTime();
query = addcsrf(query);