diff options
author | Arun Persaud <arun@nubati.net> | 2008-07-13 20:36:43 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-07-13 20:36:43 -0700 |
commit | db82830ad5268aedd807536be2486de22b989ae0 (patch) | |
tree | bde544a34d62e7248af6dafa9905b0027314f970 | |
parent | 3e07ecbf6f6b1f9f027bc5895a43d5efa774d083 (diff) | |
download | e-DoKo-db82830ad5268aedd807536be2486de22b989ae0.tar.gz e-DoKo-db82830ad5268aedd807536be2486de22b989ae0.tar.bz2 e-DoKo-db82830ad5268aedd807536be2486de22b989ae0.zip |
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 <arun@nubati.net>
-rw-r--r-- | include/output.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'; } |