/* 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*/
/* 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;
}