diff options
author | Nat Lasseter <user@4574.co.uk> | 2025-03-10 20:06:23 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2025-03-10 20:06:23 +0000 |
commit | 641ead99bb7dbcc0718e0ce51bf7490d06d7e194 (patch) | |
tree | 8ea821fabba7eaf021131c94e7adbd77a92c7609 /cgi/home.cgi | |
parent | 1f5c5647e69fe04b98fd0b1af193880a00e9114e (diff) |
Semantic error (no tout if first collection)
Diffstat (limited to 'cgi/home.cgi')
-rw-r--r-- | cgi/home.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cgi/home.cgi b/cgi/home.cgi index b6dafb6..77bc5e1 100644 --- a/cgi/home.cgi +++ b/cgi/home.cgi @@ -17,7 +17,8 @@ def next_collection else "in #{days} days" end - tout = "Then " unless out.empty? + tout = "" + tout += "Then " unless out.empty? tout += case coll["service"] when "REFUSE"; "General Domestic Waste" when "RECYCLING"; "<font color=\"green\">Recycling</font>" |