summaryrefslogtreecommitdiffhomepage
path: root/themes/fledermaus
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-06-14 14:31:37 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-06-14 14:31:37 +0000
commit3eabbcc19185205dc9c91d90ee884c08156652af (patch)
treead705f53c1d188c07a379bf45994c3facf413cf7 /themes/fledermaus
parent855b7582d3576f45693e3a48fdb253c813cf4dce (diff)
* luci/themes: fix query string functionality
Diffstat (limited to 'themes/fledermaus')
-rw-r--r--themes/fledermaus/luasrc/view/themes/fledermaus/header.htm2
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>