mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/9503] Show 'No subject specified' in 'Posts awaiting approval'.
Show 'No subject specified' in 'Posts awaiting approval' if post subject is empty. PHPBB3-9503
This commit is contained in:
parent
fc25fe694a
commit
2f67eafd34
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ class mcp_queue
|
||||||
|
|
||||||
'POST_ID' => $row['post_id'],
|
'POST_ID' => $row['post_id'],
|
||||||
'FORUM_NAME' => (!$global_topic) ? $forum_names[$row['forum_id']] : $user->lang['GLOBAL_ANNOUNCEMENT'],
|
'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'],
|
'TOPIC_TITLE' => $row['topic_title'],
|
||||||
'POST_TIME' => $user->format_date($row['post_time']))
|
'POST_TIME' => $user->format_date($row['post_time']))
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue