aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_queue.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2010-09-12 13:40:02 +0200
committerIgor Wiedler <igor@wiedler.ch>2010-09-12 13:40:02 +0200
commite08395745ba8d69e5d523563a03fe27e903dba27 (patch)
tree9bc24738c83d460f45ee33c0f92b70a7503cbe14 /phpBB/includes/mcp/mcp_queue.php
parente51e7701cd01316dc926bc4becb279da1210e725 (diff)
parent2f67eafd347134aa05483f44d969128211431b1b (diff)
downloadforums-e08395745ba8d69e5d523563a03fe27e903dba27.tar
forums-e08395745ba8d69e5d523563a03fe27e903dba27.tar.gz
forums-e08395745ba8d69e5d523563a03fe27e903dba27.tar.bz2
forums-e08395745ba8d69e5d523563a03fe27e903dba27.tar.xz
forums-e08395745ba8d69e5d523563a03fe27e903dba27.zip
Merge branch 'ticket/bantu/9503' into develop-olympus
* ticket/bantu/9503: [ticket/9503] Show 'No subject specified' in 'Posts awaiting approval'.
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php
index e43881fab2..c419da5574 100644
--- a/phpBB/includes/mcp/mcp_queue.php
+++ b/phpBB/includes/mcp/mcp_queue.php
@@ -428,7 +428,7 @@ class mcp_queue
'POST_ID' => $row['post_id'],
'FORUM_NAME' => (!$global_topic) ? $forum_names[$row['forum_id']] : $user->lang['GLOBAL_ANNOUNCEMENT'],
- 'POST_SUBJECT' => $row['post_subject'],
+ 'POST_SUBJECT' => ($row['post_subject'] != '') ? $row['post_subject'] : $user->lang['NO_SUBJECT'],
'TOPIC_TITLE' => $row['topic_title'],
'POST_TIME' => $user->format_date($row['post_time']))
);