aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_topic.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-07-14 20:55:49 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-07-14 20:55:49 +0200
commite7e98f1de5c394859284f031f2a4f0c47534b311 (patch)
treece4bbebcac4517ed8d11788522abd96d04081eb6 /phpBB/includes/mcp/mcp_topic.php
parentda256b33d93978f672aa07e0e94be585a7d1d2ee (diff)
parent954b3c348454ee41eb8da189794ac34ffdd4a115 (diff)
downloadforums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.gz
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.bz2
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.xz
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.zip
Merge branch 'ticket/nickvergessen/7720' into develop-olympus
* ticket/nickvergessen/7720: [ticket/7720] Fix alternative image-description for unread posts.
Diffstat (limited to 'phpBB/includes/mcp/mcp_topic.php')
-rw-r--r--phpBB/includes/mcp/mcp_topic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php
index 9779478330..76cd9beb92 100644
--- a/phpBB/includes/mcp/mcp_topic.php
+++ b/phpBB/includes/mcp/mcp_topic.php
@@ -237,7 +237,7 @@ function mcp_topic_view($id, $mode, $action)
'POST_ID' => $row['post_id'],
'RETURN_TOPIC' => sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", 't=' . $topic_id) . '">', '</a>'),
- 'MINI_POST_IMG' => ($post_unread) ? $user->img('icon_post_target_unread', 'NEW_POST') : $user->img('icon_post_target', 'POST'),
+ 'MINI_POST_IMG' => ($post_unread) ? $user->img('icon_post_target_unread', 'UNREAD_POST') : $user->img('icon_post_target', 'POST'),
'S_POST_REPORTED' => ($row['post_reported']) ? true : false,
'S_POST_UNAPPROVED' => ($row['post_approved']) ? false : true,