aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-08-31 19:08:05 +0200
committerTristan Darricau <github@nicofuma.fr>2016-08-31 19:08:05 +0200
commitd737430a03dc9efa1633c13251fdb235540fdb3d (patch)
tree11b7c1a2a5eeb2a64a10326eae3eb4347fcfd2cb /phpBB
parenta019a86bfcd7c1ffe7b38449bc6d93c377d4662a (diff)
parent429ecb938c75f710e413f80b828db51435471560 (diff)
downloadforums-d737430a03dc9efa1633c13251fdb235540fdb3d.tar
forums-d737430a03dc9efa1633c13251fdb235540fdb3d.tar.gz
forums-d737430a03dc9efa1633c13251fdb235540fdb3d.tar.bz2
forums-d737430a03dc9efa1633c13251fdb235540fdb3d.tar.xz
forums-d737430a03dc9efa1633c13251fdb235540fdb3d.zip
Merge pull request #4422 from Crizz0/ticket/14673
[ticket/14673] Changes wrong language variable in mcp_forum * Crizz0/ticket/14673: [ticket/14673] Changes wrong language variable in mcp_forum
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/mcp/mcp_forum.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_forum.php b/phpBB/includes/mcp/mcp_forum.php
index 6faf0de35b..9573ecbe0d 100644
--- a/phpBB/includes/mcp/mcp_forum.php
+++ b/phpBB/includes/mcp/mcp_forum.php
@@ -273,7 +273,7 @@ function mcp_forum_view($id, $mode, $action, $forum_info)
'TOPIC_ICON_IMG_WIDTH' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['width'] : '',
'TOPIC_ICON_IMG_HEIGHT' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['height'] : '',
'UNAPPROVED_IMG' => ($topic_unapproved || $posts_unapproved) ? $user->img('icon_topic_unapproved', ($topic_unapproved) ? 'TOPIC_UNAPPROVED' : 'POSTS_UNAPPROVED') : '',
- 'DELETED_IMG' => ($topic_deleted) ? $user->img('icon_topic_deleted', 'POSTS_DELETED') : '',
+ 'DELETED_IMG' => ($topic_deleted) ? $user->img('icon_topic_deleted', 'TOPIC_DELETED') : '',
'TOPIC_AUTHOR' => get_username_string('username', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),
'TOPIC_AUTHOR_COLOUR' => get_username_string('colour', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),