summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--css/standard.css7
-rw-r--r--index.php4
-rw-r--r--output.php9
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 "<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;
}