From db82830ad5268aedd807536be2486de22b989ae0 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 13 Jul 2008 20:36:43 -0700 Subject: [PATCH] BUGFIX: error in javascript, sickness didn't get cleared forgot to run a loop, so that it includes the sickness trick (trick0) Signed-off-by: Arun Persaud --- include/output.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/output.php b/include/output.php index 8272739..0c75173 100644 --- a/include/output.php +++ b/include/output.php @@ -276,7 +276,7 @@ function output_header() function hl(num) { if(document.getElementById){ var i; - for(i=1;i<14;i++){ + for(i=0;i<14;i++){ if(document.getElementById("trick"+i)) document.getElementById("trick"+i).style.display = 'none'; } -- 2.25.1