From: Jo-Philipp Wich Date: Sun, 31 Aug 2008 14:50:43 +0000 (+0000) Subject: * luci/applications: statistics: strip leading and trailing whitespace from config... X-Git-Tag: 0.8.0~220 X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=c6ea479b06480e6f20bc863515ea5231e86abe63 * luci/applications: statistics: strip leading and trailing whitespace from config values, fixes OpenWrt Bug #3892 --- diff --git a/applications/luci-statistics/root/usr/bin/stat-genconfig b/applications/luci-statistics/root/usr/bin/stat-genconfig index 071cff2ca5..7f0a05f5fe 100755 --- a/applications/luci-statistics/root/usr/bin/stat-genconfig +++ b/applications/luci-statistics/root/usr/bin/stat-genconfig @@ -224,19 +224,19 @@ function _string( s, n, nopad ) if s then if s:find("[^%d]") then if not s:find("[^%w]") then - str = pad .. n .. " " .. s + str = pad .. n .. " " .. luci.util.trim(s) else - str = pad .. n .. ' "' .. s .. '"' + str = pad .. n .. ' "' .. luci.util.trim(s) .. '"' end else - str = pad .. n .. " " .. s + str = pad .. n .. " " .. luci.util.trim(s) end str = str .. "\n" end return str -end +end plugins = { @@ -252,7 +252,7 @@ plugins = { { } }, - csv = { + csv = { { "DataDir" }, { "StoreRates" }, { }