From: Ameer Dawood Date: Tue, 24 Jul 2018 14:06:38 +0000 (+0500) Subject: luci-app-nlbwmon: the default CSV delimiter should be a comma X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=15fc6bf48d0e856d3390ba929bee0165fa81d673;p=project%2Fluci.git luci-app-nlbwmon: the default CSV delimiter should be a comma Suggested-by: Ameer Dawood [slightly reword commit subject] Signed-off-by: Jo-Philipp Wich --- diff --git a/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua b/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua index 72e87e8f90..d50b77d0f4 100644 --- a/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua +++ b/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua @@ -61,7 +61,7 @@ function action_data() local args = { } local mtype = http.formvalue("type") or "json" - local delim = http.formvalue("delim") or ";" + local delim = http.formvalue("delim") or "," local period = http.formvalue("period") local group_by = http.formvalue("group_by") local order_by = http.formvalue("order_by")