From: Steven Barth Date: Mon, 15 Sep 2008 20:44:08 +0000 (+0000) Subject: FF-Wizard: Fixed a typo which resulted in duplicate OLSR-Interfaces X-Git-Tag: 0.9.0~1296 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=605cd262ba7a55ba6d52082ef1e0380ad95a3324;p=project%2Fluci.git FF-Wizard: Fixed a typo which resulted in duplicate OLSR-Interfaces --- diff --git a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua index 6243acac5..0e1ef2863 100644 --- a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua +++ b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua @@ -230,7 +230,7 @@ function olsr.write(self, section, value) local external = community and uci:get("freifunk", community, "external") or "" -- Delete old interface - uci:delete_all("freifunk", "Interface", {Interface=device}) + uci:delete_all("freifunk", "Interface", {interface=device}) -- Write new interface local olsrbase = uci:get_all("freifunk", "olsr_interface")