From c6ea479b06480e6f20bc863515ea5231e86abe63 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 31 Aug 2008 14:50:43 +0000 Subject: * luci/applications: statistics: strip leading and trailing whitespace from config values, fixes OpenWrt Bug #3892 --- applications/luci-statistics/root/usr/bin/stat-genconfig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'applications/luci-statistics/root/usr') diff --git a/applications/luci-statistics/root/usr/bin/stat-genconfig b/applications/luci-statistics/root/usr/bin/stat-genconfig index 071cff2ca..7f0a05f5f 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" }, { } -- cgit v1.2.3