mirror of
https://github.com/openwrt/luci.git
synced 2026-08-29 06:22:49 +04:00
modules/freifunk: fix basics cbi model
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
local fs = require "nixio.fs"
|
||||
local util = require "luci.util"
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local profiles = "/etc/config/profile_"
|
||||
local profiles = "/etc/config/profile_*"
|
||||
|
||||
m = Map("freifunk", translate ("Community"))
|
||||
c = m:section(NamedSection, "community", "public", nil, translate("These are the basic settings for your local wireless community. These settings define the default values for the wizard and DO NOT affect the actual configuration of the router."))
|
||||
@@ -14,7 +14,7 @@ community = c:option(ListValue, "name", translate ("Community"))
|
||||
community.rmempty = false
|
||||
|
||||
local profile
|
||||
for profile in fs.dir(profiles) do
|
||||
for profile in fs.glob(profiles) do
|
||||
local name = uci:get_first(profile, "community", "name") or "?"
|
||||
community:value(profile, name)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user