From 9e51f9b9d70498a5c355b3213544a8b68f8b36c6 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sun, 19 Aug 2012 15:26:18 -0700 Subject: [PATCH] web/archive.cgi: fix backward comparisons. Some form-printing code was using != instead of ==, which led to the date defaulting to today whenever it was specified. --- web/archive.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/archive.cgi b/web/archive.cgi index f8a51b6..3b3b058 100755 --- a/web/archive.cgi +++ b/web/archive.cgi @@ -56,11 +56,11 @@ def input_datetime(outf, dvals=[None, None, None, None, None, None]): sstr = '
Date: