diff --git a/www/cgi-bin/moth.lua b/www/cgi-bin/moth.lua
index bf9029a..8eec67a 100644
--- a/www/cgi-bin/moth.lua
+++ b/www/cgi-bin/moth.lua
@@ -33,7 +33,7 @@ function moth.page(title, body)
print()
end
print("")
- print("
" .. title .. "")
+ print("" .. title .. "")
print("
" .. title .. "
")
if (body) then
print("")
diff --git a/www/cgi-bin/puzzles.cgi b/www/cgi-bin/puzzles.cgi
index ebd26fa..5b0cd40 100755
--- a/www/cgi-bin/puzzles.cgi
+++ b/www/cgi-bin/puzzles.cgi
@@ -33,7 +33,7 @@ for cat, biggest in pairs(max_by_cat) do
points, dirname = line:match("^(%d+) (.*)")
points = tonumber(points)
- body = body .. "" .. points .. " "
+ body = body .. "" .. points .. " "
if (points > biggest) then
break
end