#115: ACP option to hide / show the columns "views" and "replies" in compact mode for news and announcements.

RC3 preparation.
This commit is contained in:
Kevin
2008-08-29 18:56:37 +00:00
parent 34764d111d
commit e256e9a039
12 changed files with 99 additions and 58 deletions

View File

@@ -306,11 +306,12 @@ else
}
$template->assign_vars(array(
'NEWEST_POST_IMG' => $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
'READ_POST_IMG' => $user->img('icon_topic_latest', 'VIEW_NEWEST_POST'),
'GOTO_PAGE_IMG' => $user->img('icon_post_target', 'GOTO_PAGE'),
'S_DISPLAY_ANNOUNCEMENTS' => true,
'S_TOPIC_ICONS' => $fetch_news['topic_icons'],
'NEWEST_POST_IMG' => $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
'READ_POST_IMG' => $user->img('icon_topic_latest', 'VIEW_NEWEST_POST'),
'GOTO_PAGE_IMG' => $user->img('icon_post_target', 'GOTO_PAGE'),
'S_DISPLAY_ANNOUNCEMENTS' => true,
'S_DISPLAY_ANNOUNCEMENTS_RVS' => ( $portal_config['portal_show_announcements_replies_views'] ) ? true : false,
'S_TOPIC_ICONS' => $fetch_news['topic_icons'],
));
?>