more cleanup
authorarun <arun@nubati.net>
Mon, 9 Apr 2007 08:06:01 +0000 (08:06 +0000)
committerarun <arun>
Mon, 9 Apr 2007 08:06:01 +0000 (08:06 +0000)
css/standard.css
index.php
output.php

index d1c31c185d73d5e3bcc95d4fc453bf77b99a9bd4..704610cf4f023e84b8fa782afa9f3c447ab8314a 100644 (file)
@@ -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;
index 95ccfcfa3da68cd614e074c46d60bc343909a7ca..ff1948fface259345c62c52f2f5610a54dc39794 100644 (file)
--- 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*/
       
index 44bdfc3cbf4f9c8af0bb0752dce507cb7e28ff4e..3bf901d0c39a583cba6ffa28c3fd79dde7ee5bf4 100644 (file)
@@ -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;
 }