diff options
author | Steven Barth <steven@midlink.org> | 2008-09-07 22:55:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-07 22:55:10 +0000 |
commit | 7334fc65b255000adcd7dda0ceb77a0e3751eef4 (patch) | |
tree | f9c670a0852ef5e3fb48edb29b8216d9df38ea78 /libs/cbi | |
parent | d8282d382bc675eb1c930eed0fe65c41050400b8 (diff) |
Fixed a swap of keys and descriptions in additional fields of dynamic sections
Diffstat (limited to 'libs/cbi')
-rw-r--r-- | libs/cbi/luasrc/view/cbi/ucisection.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/cbi/luasrc/view/cbi/ucisection.htm b/libs/cbi/luasrc/view/cbi/ucisection.htm index 92343bba2..4bd10b44a 100644 --- a/libs/cbi/luasrc/view/cbi/ucisection.htm +++ b/libs/cbi/luasrc/view/cbi/ucisection.htm @@ -31,7 +31,7 @@ $Id$ <%- for i, val in pairs(self.optionals[section]) do -%> - <%-=string.format("%q", striptags(val.title)) .. ":" .. string.format("%q", val.option)-%>, + <%-=string.format("%q", striptags(val.option)) .. ":" .. string.format("%q", val.title)-%>, <%- end -%> |