diff options
author | arun <arun@nubati.net> | 2006-12-14 09:36:20 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-14 09:36:20 +0000 |
commit | ec799c6a6c714e390ee8729c6245dad23a7e5a2b (patch) | |
tree | 694a5097dd4ab0270301f91816a9fc3ffa977936 /index.php | |
parent | 92a2164d4f1d5367b9325a8d65089abe79ee653b (diff) | |
download | e-DoKo-ec799c6a6c714e390ee8729c6245dad23a7e5a2b.tar.gz e-DoKo-ec799c6a6c714e390ee8729c6245dad23a7e5a2b.tar.bz2 e-DoKo-ec799c6a6c714e390ee8729c6245dad23a7e5a2b.zip |
moved files to top of domain and found a few links that didn't use the one defined in the config file. fixed now
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -600,7 +600,7 @@ else if(isset($_REQUEST["me"])) echo "<p>these are the games you are playing in:<br />\n"; $result = mysql_query("SELECT hash,game_id from Hand WHERE user_id='$uid' AND status<>'gameover'" ); while( $r = mysql_fetch_array($result,MYSQL_NUM)) - echo "<a href=\"http://doko.nubati.net/database/index.php?me=".$r[0]."\">game #".$r[1]." </a><br />"; + echo "<a href=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />"; echo "</p>\n"; $names = DB_get_all_names(); @@ -609,7 +609,7 @@ else if(isset($_REQUEST["me"])) echo "$name <br />\n"; echo "</p>\n"; echo "<p>Want to start a new game? remember 4 names from the list above and visit ". - "<a href=\"http://doko.nubati.net/database/index.php?new\">this page.</a></p>"; + "<a href=\"".$host."?new\">this page.</a></p>"; } else { |