Author: acydburn
Date: Mon Sep 7 12:42:30 2009
New Revision: 10114
Log:
Fix Bug #50845 (missing info icon in subsilver2)
Modified:
branches/phpBB-3_0_0/phpBB/includes/mcp/mcp_topic.php
Modified: branches/phpBB-3_0_0/phpBB/includes/mcp/mcp_topic.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/mcp/mcp_topic.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/mcp/mcp_topic.php Mon Sep 7 12:42:30 2009
***************
*** 301,308 ****
'POSTS_PER_PAGE' => $posts_per_page,
'ACTION' => $action,
! 'REPORTED_IMG' => $user->img('icon_topic_reported', 'POST_REPORTED', false, true),
! 'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', 'POST_UNAPPROVED', false, true),
'S_MCP_ACTION' => "$url&i=$id&mode=$mode&action=$action&start=$start",
'S_FORUM_SELECT' => ($to_forum_id) ? make_forum_select($to_forum_id, false, false, true, true, true) : make_forum_select($topic_info['forum_id'], false, false, true, true, true),
--- 301,309 ----
'POSTS_PER_PAGE' => $posts_per_page,
'ACTION' => $action,
! 'REPORTED_IMG' => $user->img('icon_topic_reported', 'POST_REPORTED'),
! 'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', 'POST_UNAPPROVED'),
! 'INFO_IMG' => $user->img('icon_post_info', 'VIEW_INFO'),
'S_MCP_ACTION' => "$url&i=$id&mode=$mode&action=$action&start=$start",
'S_FORUM_SELECT' => ($to_forum_id) ? make_forum_select($to_forum_id, false, false, true, true, true) : make_forum_select($topic_info['forum_id'], false, false, true, true, true),
|