?>
</td>
			<td><?php 
            echo readable_judging_number($row_log['brewCategory'], $row_log['brewJudgingNumber']);
            ?>
</td>
			<td><?php 
            echo $row_log['brewName'];
            ?>
</td>
			<td><?php 
            echo $row_log['brewCategorySort'] . $row_log['brewSubCategory'] . ": " . $row_log['brewStyle'];
            ?>
</td>
			<td><?php 
            echo score_check($row_log['id'], $judging_scores_db_table, 1);
            ?>
</td>
			<td><?php 
            echo winner_check($row_log['id'], $judging_scores_db_table, $judging_tables_db_table, $brewing_db_table, $_SESSION['prefsWinnerMethod']);
            ?>
</td>
		</tr>
	<?php 
        } while ($row_log = mysql_fetch_assoc($log));
        ?>
    </tbody>
    </table>
    <?php 
        if ($totalRows_organizer > 0) {
            ?>
     $entry_output .= "<td class='dataList'>";
 }
 if ($row_log['brewUpdated'] != "") {
     $entry_output .= getTimeZoneDateTime($_SESSION['prefsTimeZone'], strtotime($row_log['brewUpdated']), $_SESSION['prefsDateFormat'], $_SESSION['prefsTimeFormat'], "short", "date-time-no-gmt");
 } else {
     $entry_output .= "&nbsp;";
 }
 $entry_output .= "</td>";
 // Display if Closed, Judging Dates have passed, winner display is enabled, and the winner display delay time period has passed
 if ($show_scores) {
     $medal_winner = winner_check($row_log['id'], $judging_scores_db_table, $judging_tables_db_table, $brewing_db_table, $_SESSION['prefsWinnerMethod']);
     if (NHC) {
         $admin_adv = winner_check($row_log['id'], $judging_scores_db_table, $judging_tables_db_table, $brewing_db_table, $row_log['brewWinner']);
     }
     $winner_place = preg_replace("/[^0-9\\s.-:]/", "", $medal_winner);
     $score = score_check($row_log['id'], $judging_scores_db_table);
     if ($action == "print") {
         $entry_output .= "<td class='dataList bdr1B'>";
     } else {
         $entry_output .= "<td class='dataList'>";
     }
     $entry_output .= $score;
     $entry_output .= "</td>";
     if ($action == "print") {
         $entry_output .= "<td class='dataList bdr1B'>";
     } else {
         $entry_output .= "<td class='dataList'>";
     }
     if (minibos_check($row_log['id'], $judging_scores_db_table)) {
         if ($action != "print") {
             $entry_output .= "<img src='" . $base_url . "images/tick.png'> Yes";