04.12.2012, 02:46
-
Good tool, do you think?
move to file for templates
templates/game_ranking.tpl past this:
PHP Code:
{if top==$mode}
<tr>
<td class="selected" width="120">
<a href="game.php?village={$village.id}&screen=ranking&mode=top">Top 10</a>
</td>
</tr>
{else}
<tr>
<td width="120">
<a href="game.php?village={$village.id}&screen=ranking&mode=top">Top 10</a>
</td>
</tr>
{/if}
in the end past this:
PHP Code:
{if $mode == 'top'}
{include file="game_ranking_top.tpl"}
{/if}
Regards