From: Jo-Philipp Wich Date: Sat, 11 Aug 2012 21:15:05 +0000 (+0000) Subject: proto/6x4: cast 6to4 adv_interface to string when saving to uci, fixes 6in4.sh not... X-Git-Tag: 0.11.0~357 X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=489e69edfd103de532dfd291d3d30eca1db349c8 proto/6x4: cast 6to4 adv_interface to string when saving to uci, fixes 6in4.sh not picking up the adv interfaces --- diff --git a/protocols/6x4/luasrc/model/cbi/admin_network/proto_6to4.lua b/protocols/6x4/luasrc/model/cbi/admin_network/proto_6to4.lua index 60f5db7fa7..7258cbc918 100644 --- a/protocols/6x4/luasrc/model/cbi/admin_network/proto_6to4.lua +++ b/protocols/6x4/luasrc/model/cbi/admin_network/proto_6to4.lua @@ -32,6 +32,14 @@ adv_interface.nocreate = true adv_interface.nobridges = true adv_interface.novirtual = true +function adv_interface.write(self, section, value) + if type(value) == "table" then + Value.write(self, section, table.concat(value, " ")) + else + Value.write(self, section, value) + end +end + function adv_interface.remove(self, section) self:write(section, " ") end