Started building page cleanup Modified code pools Backported layout/blocks/templates 3-step view system Reforged Overview page Moved graphics, added topnav template, fixed number render bug Added BCMath optionnal usage Updated BC Math comparison for capped resources Fixed planet resource production updates Various additions Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
11 lines
No EOL
352 B
PHTML
11 lines
No EOL
352 B
PHTML
<?php if ($this['count'] > 0):?>
|
|
<tr>
|
|
<th colspan=4>
|
|
<?php if ($this['count'] == 1):?>
|
|
<a href=messages.php><?php echo $this->__('You have 1 unread message.')?></a>
|
|
<?php else:?>
|
|
<a href=messages.php><?php echo $this->__('You have %1$d unread messages.', $this['count'])?></a>
|
|
<?php endif?>
|
|
</th>
|
|
</tr>
|
|
<?php endif?> |