Add note about static page generation

This commit is contained in:
Neale Pickett 2010-09-12 22:34:42 -06:00
parent 23b6f28a21
commit 507dd93d88
1 changed files with 4 additions and 1 deletions

View File

@ -74,7 +74,10 @@ main(int argc, char *argv)
logfile, "%s %s %ld", team, category, points);
cgi_page("Points awarded",
"<p>%d points for %s.</p>", points, team);
("<p>%d points for %s.</p>\n"
"<p>Patience please: it may be up to 1 minute before "
"the next puzzle opens in this category.</p>"),
points, team);
return 0;
}