Merge r4099 r4100 r4101

This commit is contained in:
Jo-Philipp Wich 2009-01-20 00:54:28 +00:00
parent 796204cd58
commit 82c9c00115
2 changed files with 20 additions and 20 deletions

View File

@ -1,7 +1,7 @@
include ../../build/config.mk include ../../build/config.mk
include ../../build/gccconfig.mk include ../../build/gccconfig.mk
UCI_VERSION = 0.7.1 UCI_VERSION = 0.7.2
UCI_SITE = http://mirror2.openwrt.org/sources UCI_SITE = http://mirror2.openwrt.org/sources
UCI_DIR = uci-$(UCI_VERSION) UCI_DIR = uci-$(UCI_VERSION)
UCI_FILE = $(UCI_DIR).tar.gz UCI_FILE = $(UCI_DIR).tar.gz

View File

@ -1501,7 +1501,7 @@ function StaticList.validate(self, value)
local valid = {} local valid = {}
for i, v in ipairs(value) do for i, v in ipairs(value) do
if luci.util.contains(self.vallist, v) then if luci.util.contains(self.keylist, v) then
table.insert(valid, v) table.insert(valid, v)
end end
end end