Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
Error on Hall of Fame bug
Browse files Browse the repository at this point in the history
Fixes #331
  • Loading branch information
jkroepke committed Jan 27, 2018
1 parent a6392d7 commit 42370b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions styles/templates/game/page.battleHall.default.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<tr>
<td>{$LNG.tkb_platz}</td>
<td>{$LNG.tkb_owners}</td>
<td><a href="game.php?page=battleHall&order=date&sort={if $sort == "ASC"}DESC{else}ASC{/if}"{if $order == "date"} style="font-weight:bold;"{/if}>{$LNG.tkb_datum}</a></td>
<td><a href="game.php?page=battleHall&order=units&sort={if $sort == "ASC"}DESC{else}ASC{/if}"{if $order == "units"} style="font-weight:bold;"{/if}>{$LNG.tkb_units}</a></td>
<td><a href="game.php?page=battleHall&amp;order=date&amp;sort={if $sort == "ASC"}DESC{else}ASC{/if}"{if $order == "date"} style="font-weight:bold;"{/if}>{$LNG.tkb_datum}</a></td>
<td><a href="game.php?page=battleHall&amp;order=units&amp;sort={if $sort == "ASC"}DESC{else}ASC{/if}"{if $order == "units"} style="font-weight:bold;"{/if}>{$LNG.tkb_units}</a></td>
</tr>
{foreach $TopKBList as $row}
<tr class="day{floor($row.date / 86400)} week{floor($row.date / 604800)}">
<tr class="day{floor($row.time / 86400)} week{floor($row.time / 604800)}">
<td>{$row@iteration}</td>
<td><a href="game.php?page=raport&amp;mode=battlehall&amp;raport={$row.rid}" target="_blank">
{if $row.result == "a"}
Expand Down

0 comments on commit 42370b3

Please sign in to comment.