Browse Source

Fix improper syntax in list

brackets needed for non-standard table indexing.   Also added a trailing comma as its valid (and more consistent, imo).
TJ Borromeo 9 years ago
parent
commit
b4842301a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      httpserver-header.lua

+ 1 - 1
httpserver-header.lua

@@ -5,7 +5,7 @@
 return function (connection, code, extension)
 
    local function getHTTPStatusString(code)
-      local codez = {200="OK", 400="Bad Request", 404="Not Found", 501="Not Implemented"}
+      local codez = {[200]="OK", [400]="Bad Request", [404]="Not Found", [501]="Not Implemented",}
       local myResult = codez[code]
       if myResult then return myResult else return "Unknown HTTP Status" end
    end