Файл: monst/core/file/last_news.php
Строк: 21
<?
$key = md5('last_news');
if ( $news = $mem -> get($key) ) {
foreach ( $news as $n ) {
if ( time() - $n['time'] <= 60 * 20 ) {
$name = $n['name'];
?>
<a href='/forum/topic/1/<?=$n['id']?>'>
<div style='background: #111; padding: 10px; border-bottom: 1px dotted #222;'>
<img src='/core/i/menu/forum.png' alt='' width='15'/>
<span style='color: #999;'><?=$name?></span> <span style='font-size: 10px;'>< <?=replace_time($n['time'])?></span><br/>
</div>
</a>
<?
}
}
}