瀏覽代碼

ffho-status-page: fix list of mesh interfaces

Karsten Böddeker 7 年之前
父節點
當前提交
4d8cb845f9
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      ffho/ffho-status-page/luasrc/lib/gluon/status-page/www/cgi-bin/status

+ 2 - 2
ffho/ffho-status-page/luasrc/lib/gluon/status-page/www/cgi-bin/status

@@ -158,8 +158,8 @@ io.write("<pre>")
 local iface = false
 for _, line in ipairs(util.split(util.exec("batctl if"))) do
   if not line:match("^primary0") then
-    io.write(line)
-	iface = true
+    io.write(escape_html(line) .. '\n')
+    iface = true
   end
 end
 if not iface then