diff options
author | arun <arun@nubati.net> | 2007-04-09 08:06:01 +0000 |
---|---|---|
committer | arun <arun> | 2007-04-09 08:06:01 +0000 |
commit | df684cccba11a7efdee637b58de9c1ecd25bdc10 (patch) | |
tree | 7d2dd7db51b9ae12c81d5e4562b8d198dd47acd4 | |
parent | 330c4ad8114934ccd906eee471c9986e27549c47 (diff) | |
download | e-DoKo-df684cccba11a7efdee637b58de9c1ecd25bdc10.tar.gz e-DoKo-df684cccba11a7efdee637b58de9c1ecd25bdc10.tar.bz2 e-DoKo-df684cccba11a7efdee637b58de9c1ecd25bdc10.zip |
more cleanup
-rw-r--r-- | css/standard.css | 7 | ||||
-rw-r--r-- | index.php | 4 | ||||
-rw-r--r-- | 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; @@ -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*/ @@ -2,14 +2,13 @@ /* functions which only ouput html */ -function display_news() +function display_links($email,$password) { global $wiki; echo "<div class=\"bug\">\n". - " Schweinchen should work now (only for new games).<br - /><hr />". - " If you find more bugs, please list them in the <a href=\"". - $wiki."\">wiki</a>.\n</div>\n"; + "Report bugs in the <a href=\"". $wiki."\">wiki</a>.<hr />\n"; + output_link_to_user_page($email,$password); + echo "</div>\n"; return; } |