diff options
author | Steven Barth <steven@midlink.org> | 2008-08-13 22:54:38 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-13 22:54:38 +0000 |
commit | 58f183a28269ded9f41eb980b63a607421689f63 (patch) | |
tree | 5cd1a4e51a2a8c5d8e90703ef232f7c064194fe4 /libs | |
parent | 741e0c89a4e4e9821731a28d4117cdac27539a19 (diff) |
Completed rewrite of network interface configuration page
Diffstat (limited to 'libs')
-rw-r--r-- | libs/cbi/luasrc/view/cbi/tblsection.htm | 2 | ||||
-rw-r--r-- | libs/uci/luasrc/model/uci.lua | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libs/cbi/luasrc/view/cbi/tblsection.htm b/libs/cbi/luasrc/view/cbi/tblsection.htm index 979a135b5..d4effef49 100644 --- a/libs/cbi/luasrc/view/cbi/tblsection.htm +++ b/libs/cbi/luasrc/view/cbi/tblsection.htm @@ -70,7 +70,7 @@ end <%- if self.extedit or self.addremove then -%> <td class="cbi-section-table-cell"> <%- if self.extedit then -%> - <a href="<%=self.extedit:format(section)%>"><img style="border: none" src="<%=resource%>/cbi/edit.gif" alt="<%:edit%>" /></a> + <a href="<%=self.extedit:format(section)%>" title="<%:edit%>"><img style="border: none" src="<%=resource%>/cbi/edit.gif" alt="<%:edit%>" /></a> <%- end; if self.addremove then %> <input type="image" value="<%:cbi_del%>" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:cbi_del%>" title="<%:cbi_del%>" src="<%=resource%>/cbi/remove.gif" /> <%- end -%> diff --git a/libs/uci/luasrc/model/uci.lua b/libs/uci/luasrc/model/uci.lua index 02bcbe99c..665866e68 100644 --- a/libs/uci/luasrc/model/uci.lua +++ b/libs/uci/luasrc/model/uci.lua @@ -101,6 +101,7 @@ function tset(config, section, values) stat = stat and set(config, section, k, v) end end + return stat end |