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/fledermaus | |
parent | 855b7582d3576f45693e3a48fdb253c813cf4dce (diff) |
* luci/themes: fix query string functionality
Diffstat (limited to 'themes/fledermaus')
-rw-r--r-- | themes/fledermaus/luasrc/view/themes/fledermaus/header.htm | 2 |
1 files changed, 1 insertions, 1 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> |