modules/admin-full: Removed accidently remaining debug dummy stuff
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_system / system.lua
index 4e6342d..6cc5c49 100644 (file)
@@ -23,7 +23,7 @@ s:option(Value, "hostname", translate("hostname"))
 tz = s:option(ListValue, "timezone", translate("timezone"))
 for k, offset in luci.util.vspairs(luci.http.protocol.date.TZ) do
        local zone = k:upper()  
-       local osgn = (offset > 0 and "" or "+")
+       local osgn = (offset >= 0 and "" or "+")
        local ohrs = math.floor(-offset / 3600)
        local omin = (offset % 3600) / 60