Fix autodetection for extended language identifiers
authorSteven Barth <steven@midlink.org>
Fri, 30 Jan 2009 15:29:14 +0000 (15:29 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 30 Jan 2009 15:29:14 +0000 (15:29 +0000)
libs/web/luasrc/dispatcher.lua

index 24ce246..5110209 100644 (file)
@@ -134,7 +134,8 @@ function dispatch(request)
        local lang = conf.main.lang
        if lang == "auto" then
                local aclang = http.getenv("HTTP_ACCEPT_LANGUAGE") or ""
-               for lpat in aclang:gmatch("[%w]+") do
+               for lpat in aclang:gmatch("[%w-]+") do
+                       lpat = lpat and lpat:gsub("-", "_")
                        if conf.languages[lpat] then
                                lang = lpat
                                break