From e822874a710a00ee8b6de988ece12ba76e193236 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 29 Nov 2009 13:46:04 +0000 Subject: NIU: Add WDS bridge client mode Extending / repeating WDS network in AP wizard Better 802.11s support --- libs/cbi/luasrc/view/cbi/full_valuefooter.htm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'libs/cbi/luasrc') diff --git a/libs/cbi/luasrc/view/cbi/full_valuefooter.htm b/libs/cbi/luasrc/view/cbi/full_valuefooter.htm index e1174e250..c069b7f92 100644 --- a/libs/cbi/luasrc/view/cbi/full_valuefooter.htm +++ b/libs/cbi/luasrc/view/cbi/full_valuefooter.htm @@ -54,8 +54,16 @@ $Id$ cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option..d.add%>", { <%- for k,v in pairs(d.deps) do + local depk + if k:find("!", 1, true) then + depk = string.format('"%s"', k) + elseif k:find(".", 1, true) then + depk = string.format('"cbid.%s"', k) + else + depk = string.format('"cbid.%s.%s.%s"', self.config, section, k) + end -%> - <%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%> + <%-= depk .. ":" .. string.format("%q", v)-%> <%-if next(d.deps, k) then-%>,<%-end-%> <%- end -- cgit v1.2.3