Fix no hash bug in puzzler.cgi

This commit is contained in:
Neale Pickett 2015-05-28 13:58:54 -06:00
parent 47122fc720
commit 3b62bd418c
1 changed files with 9 additions and 7 deletions

View File

@ -40,12 +40,11 @@ function koth.page(title, body)
print(body)
print("</section>")
end
print([[<section id="sponsors">
<img src="../images/lanl.png" alt="Los Alamos National Laboratory">
<img src="../images/doe.png" alt="US Department Of Energy">
<img src="../images/sandia.png" alt="Sandia National Laboratories">
</section>]])
print('<section id="sponsors">')
print('<img src="../images/lanl.png" alt="Los Alamos National Laboratory">')
print('<img src="../images/doe.png" alt="US Department Of Energy">')
print('<img src="../images/sandia.png" alt="Sandia National Laboratories">')
print('</section>')
print("</body></html>")
os.exit(0)
end
@ -55,7 +54,10 @@ end
--
function koth.award_points(team, category, points, comment)
team = team:gsub("[^0-9a-f]", "-")
if (team == "") then
team = "-"
end
local filename = team .. "." .. category .. "." .. points
local entry = team .. " " .. category .. " " .. points