From 507dd93d8860c46193ea3c90861795acfddb6f42 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Sun, 12 Sep 2010 22:34:42 -0600 Subject: [PATCH] Add note about static page generation --- src/puzzler.cgi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/puzzler.cgi.c b/src/puzzler.cgi.c index a821755..87fe86d 100644 --- a/src/puzzler.cgi.c +++ b/src/puzzler.cgi.c @@ -74,7 +74,10 @@ main(int argc, char *argv) logfile, "%s %s %ld", team, category, points); cgi_page("Points awarded", - "

%d points for %s.

", points, team); + ("

%d points for %s.

\n" + "

Patience please: it may be up to 1 minute before " + "the next puzzle opens in this category.

"), + points, team); return 0; }