diff options
author | Arun Persaud <arun@nubati.net> | 2008-06-07 20:47:41 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-06-07 20:47:41 -0700 |
commit | 765a4fb590113faa80a8560711f9c89de14a50ba (patch) | |
tree | 32a0fc4dbc69991e65e851145a018cdf0aa24388 /include/functions.php | |
parent | 6437c15bdaac379a15d7e6392122f027d8254ec6 (diff) | |
download | e-DoKo-765a4fb590113faa80a8560711f9c89de14a50ba.tar.gz e-DoKo-765a4fb590113faa80a8560711f9c89de14a50ba.tar.bz2 e-DoKo-765a4fb590113faa80a8560711f9c89de14a50ba.zip |
BUGFIX: fixed a typo in the scoretable
Nr instead of No
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/functions.php')
-rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index fafcf36..f8a0da4 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1041,7 +1041,7 @@ function format_score_table_html($score,$userid) $output = "<div class=\"scoretable\">\n<table class=\"score\">\n <thead><tr>\n"; /* output header */ - $output.= " <th> Nr </th>"; + $output.= " <th> No </th>"; foreach($score[0]['players'] as $id=>$points) { $name = DB_get_name('userid',$id); /*TODO*/ |