diff options
author | Arun Persaud <arun@nubati.net> | 2011-02-16 22:30:45 -0800 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2011-02-16 22:30:45 -0800 |
commit | 9d2e48f960548296e71256a282bbf2bec3efbd47 (patch) | |
tree | bf24f97d6fd522977c55d35b766227a327779c96 | |
parent | 7fd5f58fd7ea92f8682fcbe9a197f298e64e336e (diff) | |
download | e-DoKo-9d2e48f960548296e71256a282bbf2bec3efbd47.tar.gz e-DoKo-9d2e48f960548296e71256a282bbf2bec3efbd47.tar.bz2 e-DoKo-9d2e48f960548296e71256a282bbf2bec3efbd47.zip |
BUGFIX: fixed a type on the welcome screen
-rw-r--r-- | include/welcome.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/welcome.php b/include/welcome.php index 6c9a6bc..2b2a23b 100644 --- a/include/welcome.php +++ b/include/welcome.php @@ -59,7 +59,7 @@ echo "<p> If you want to play a game of Doppelkopf, you found the right place ;) if($pre == 0) echo "<p> At the moment there are no games that are being started "; else if($pre==1) - echo "<p> At the moment there is one games that is being started "; + echo "<p> At the moment there is one game that is being started "; else echo "<p> At the moment there are $pre games that are being started "; |