BUGFIX: make user menu and personal notes appear again
[e-DoKo.git] / include / output.php
index 723dd548a8fab68ec26b1a2c02b1cd803a1c2738..47fddfea50ae2aeab4261edf75cd4c1f9fbb1af8 100644 (file)
@@ -311,7 +311,7 @@ function output_header()
   </head>
 <body onload="high_last();">
 <div class="header">
-<h1> Welcome to E-Doko <sup style="color:#888;">(beta)</sup> </h1>
+<h1> Welcome to E-Doko <sup style="color:#888;">(RC 1)</sup> </h1>
 </div>
 <?php
 
@@ -437,9 +437,6 @@ function output_password_recovery($email,$password)
 
 function output_user_notes($userid,$gameid,$userstatus)
 {
-  /* make sure to only show these if the person is logged in */
-  if(!isset($_SESSION['id']) || $userid != $_SESSION['id']) return;
-
   echo "<div class=\"notes\"> Personal notes: <br />\n";
   $notes = DB_get_notes_by_userid_and_gameid($userid,$gameid);
   foreach($notes as $note)