summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/controller
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-07 20:21:38 +0000
committerSteven Barth <steven@midlink.org>2008-08-07 20:21:38 +0000
commitfbae92e522692d9bb34501ad9a805da794a47123 (patch)
tree2cf9e565ee268d4745177726ca29aae569a1876f /modules/admin-full/luasrc/controller
parente72a526984982f6fa2b6f2ed5ce01523094bfe43 (diff)
modules/admin-full: Added support for interface aliases
Diffstat (limited to 'modules/admin-full/luasrc/controller')
-rw-r--r--modules/admin-full/luasrc/controller/admin/network.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/controller/admin/network.lua b/modules/admin-full/luasrc/controller/admin/network.lua
index 3fb45f804d..1d44bda777 100644
--- a/modules/admin-full/luasrc/controller/admin/network.lua
+++ b/modules/admin-full/luasrc/controller/admin/network.lua
@@ -38,7 +38,8 @@ function index()
function (section)
local ifc = section[".name"]
if ifc ~= "loopback" then
- entry({"admin", "network", "ifaces", ifc}, page.target, ifc)
+ entry({"admin", "network", "ifaces", ifc},
+ page.target, ifc:upper())
end
end
)