diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-06-14 14:31:37 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-06-14 14:31:37 +0000 |
commit | 3eabbcc19185205dc9c91d90ee884c08156652af (patch) | |
tree | ad705f53c1d188c07a379bf45994c3facf413cf7 /themes | |
parent | 855b7582d3576f45693e3a48fdb253c813cf4dce (diff) |
* luci/themes: fix query string functionality
Diffstat (limited to 'themes')
-rw-r--r-- | themes/fledermaus/luasrc/view/themes/fledermaus/header.htm | 2 | ||||
-rw-r--r-- | themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm index 7f625fd38..9f27f98b8 100644 --- a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm +++ b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm @@ -75,7 +75,7 @@ local function submenu(prefix, node) <% for j, v in pairs(index) do local nnode = node.nodes[v.name] local href = controller .. prefix .. v.name - href = (v.query) and href .. luci.http.build_querystring(v.query) or href + href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href %> <li> <span<% if nnode._menu_selected then %> class="yellowtext"<%end%>><a href="<%=href%>"><%=nnode.title%></a></span> diff --git a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm index d1b751871..6852b386e 100644 --- a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm +++ b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm @@ -75,7 +75,7 @@ local function submenu(prefix, node) <% for j, v in pairs(index) do local nnode = node.nodes[v.name] local href = controller .. prefix .. v.name - href = (v.query) and href .. luci.http.build_querystring(v.query) or href + href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href %> <li> <span<% if nnode._menu_selected then %> class="blacktext"<%end%>><a href="<%=href%>"><%=nnode.title%></a></span> |