From df684cccba11a7efdee637b58de9c1ecd25bdc10 Mon Sep 17 00:00:00 2001 From: arun Date: Mon, 9 Apr 2007 08:06:01 +0000 Subject: [PATCH] more cleanup --- css/standard.css | 7 ------- index.php | 4 ++-- output.php | 9 ++++----- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/css/standard.css b/css/standard.css index d1c31c1..704610c 100644 --- a/css/standard.css +++ b/css/standard.css @@ -245,13 +245,6 @@ ul.tricks li div div.card3 span{ border-top:0; } -.over { - position:absolute; - top:12.5em; - border:2px solid black; - -} - .bug { position:absolute; top:14.5em; diff --git a/index.php b/index.php index 95ccfcf..ff1948f 100644 --- a/index.php +++ b/index.php @@ -623,9 +623,9 @@ else if(myisset("me")) /* display links to the users status page */ $result = mysql_query("SELECT email,password from User WHERE id='$myid'" ); $r = mysql_fetch_array($result,MYSQL_NUM); - output_link_to_user_page($r[0],$r[1]); + //output_link_to_user_page($r[0],$r[1]); - display_news(); + display_links($r[0],$r[1]); /* end display useful things*/ diff --git a/output.php b/output.php index 44bdfc3..3bf901d 100644 --- a/output.php +++ b/output.php @@ -2,14 +2,13 @@ /* functions which only ouput html */ -function display_news() +function display_links($email,$password) { global $wiki; echo "
\n". - " Schweinchen should work now (only for new games).

". - " If you find more bugs, please list them in the wiki.\n
\n"; + "Report bugs in the wiki.
\n"; + output_link_to_user_page($email,$password); + echo "\n"; return; } -- 2.25.1