summaryrefslogtreecommitdiffhomepage
path: root/themes/openwrt.org
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-12 17:30:57 +0000
committerSteven Barth <steven@midlink.org>2008-08-12 17:30:57 +0000
commita8a1dad10a269ecd32efd11d00bbe0ecdcad874c (patch)
tree50cc841809151fc75c9ee91343cf87141b4bd7e1 /themes/openwrt.org
parent355ac6b1a27598499d64c793817877755e166f88 (diff)
themes/*: Added .hidden Flag
Diffstat (limited to 'themes/openwrt.org')
-rw-r--r--themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm6
1 files changed, 3 insertions, 3 deletions
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 b26b68a3d..56cd1b681 100644
--- a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm
+++ b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm
@@ -94,7 +94,7 @@ end
<div id="mainmenu" class="mainmenu">
<%-
local function submenu(prefix, node)
- if not node.nodes then
+ if not node.nodes and not node.hidden then
return false
end
local index = {}
@@ -138,7 +138,7 @@ if cattree and cattree.nodes then
for i, k in ipairs(index) do
node = cattree.nodes[k.name]
- if node.title and node.target then
+ if node.title and node.target and not node.hidden then
local href = controller.."/"..category.."/"..k.name
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
@@ -152,7 +152,7 @@ end
<div class="modemenu">
<ul><%
for k,node in pairs(tree.nodes) do
- if node.title then %>
+ if node.title and not node.hidden then %>
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
<% end
end%>