summaryrefslogtreecommitdiffstats
path: root/functions.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-12-07 16:16:22 +0100
committerArun Persaud <arun@nubati.net>2007-12-07 16:16:22 +0100
commit5db5f9e9ee3544b1a2b82ad1dc4e250530dd8e64 (patch)
tree50613316f4146f7c0ed44dd7b28a34570384c7a8 /functions.php
parent24b4c073220b00bc0cb2c004351a051659b2f03b (diff)
downloade-DoKo-5db5f9e9ee3544b1a2b82ad1dc4e250530dd8e64.tar.gz
e-DoKo-5db5f9e9ee3544b1a2b82ad1dc4e250530dd8e64.tar.bz2
e-DoKo-5db5f9e9ee3544b1a2b82ad1dc4e250530dd8e64.zip
LAYOUT: fixed some typos, changed CSS a bit
the linebreak for displaying the tricks should be gone now. Fixed also quite a few other small things at the same time.
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index 1e80c31..a9ea34b 100644
--- a/functions.php
+++ b/functions.php
@@ -676,7 +676,7 @@ function display_table ()
"ORDER BY position ASC");
echo "<div class=\"table\">\n".
- " <img src=\"pics/table.png\" alt=\"table\" />\n";
+ " <img class=\"table\" src=\"pics/table.png\" alt=\"table\" />\n";
while($r = mysql_fetch_array($result,MYSQL_NUM))
{
$name = $r[0];
@@ -806,7 +806,7 @@ function display_user_menu()
{
global $wiki,$myid,$host;
echo "<div class=\"usermenu\">\n".
- "<a href=\"index.php\"> go to my user page </a>";
+ "<a href=\"index.php\"> Go to my user page </a>";
$result = mysql_query("SELECT Hand.hash,Hand.game_id,Game.player from Hand".
" LEFT JOIN Game On Hand.game_id=Game.id".
@@ -821,7 +821,7 @@ function display_user_menu()
echo "<a href=\"".$host."?me=".$r[0]."\">game ".DB_format_gameid($r[1])." </a><br />\n";
}
- echo "<hr /> <a href=\"".$host."?new\">start a new game</a>\n";
+ echo "<hr /> <a href=\"".$host."?new\">Start a new game</a>\n";
echo "<hr /> <a href=\"".substr($host,0,-9)."stats.php\">Statistics</a>\n";