aowow/template/bricks/mail.tpl.php
Sarjuuk fa29276a91 Achievement:
* use (locales_)achievement_reward to display rewards
 * implemented display of reward mails
 * updated mail to display sender if possible

Spell:
 * fixed some issues with spell_loot
 * added aura 286 (Ability Periodic Crit) to affect-checks

- added more sources for future use
2014-08-20 21:48:02 +02:00

13 lines
437 B
PHP

<?php
if ($m = $this->mail):
echo ' <h3>'.sprintf(Lang::$quest['mailDelivery'], $m['sender'], $m['delay'])."</h3>\n";
if ($m['subject']):
echo ' <div class="book"><div class="page">'.$m['subject']."</div></div>\n";
endif;
if ($m['text']):
echo ' <div class="book"><div class="page">'.$m['text']."</div></div>\n";
endif;
endif;
?>