Browse Source

'no comment' in Recent theme

pull/40/head
dubcheck 10 years ago
committed by czaks
parent
commit
c2f612bac9
  1. 5
      templates/themes/recent/theme.php

5
templates/themes/recent/theme.php

@ -93,7 +93,10 @@
openBoard($post['board']);
$post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id'])) . '#' . $post['id'];
$post['snippet'] = pm_snippet($post['body'], 30);
if ($post['body'] != "")
$post['snippet'] = pm_snippet($post['body'], 30);
else
$post['snippet'] = "<em>" . _("(no comment)") . "</em>";
$post['board_name'] = $board['name'];
$recent_posts[] = $post;

Loading…
Cancel
Save