mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
14 lines
436 B
PHP
14 lines
436 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;
|
|
?>
|