diff options
author | David M <davidmj@users.sourceforge.net> | 2007-05-25 17:16:48 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-05-25 17:16:48 +0000 |
commit | 650f5a529cd47fa0c9b0cfc60c17f7375c4d7122 (patch) | |
tree | 20aff0b0876f152843b363284c605fc22a2a72b8 | |
parent | 20993d5cf1abdb448eb57c8b0de6c0f36bfc6f70 (diff) | |
download | forums-650f5a529cd47fa0c9b0cfc60c17f7375c4d7122.tar forums-650f5a529cd47fa0c9b0cfc60c17f7375c4d7122.tar.gz forums-650f5a529cd47fa0c9b0cfc60c17f7375c4d7122.tar.bz2 forums-650f5a529cd47fa0c9b0cfc60c17f7375c4d7122.tar.xz forums-650f5a529cd47fa0c9b0cfc60c17f7375c4d7122.zip |
#11483
git-svn-id: file:///svn/phpbb/trunk@7678 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 4 | ||||
-rwxr-xr-x | phpBB/includes/mcp/mcp_reports.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 514fbdfec3..fa40caa7d5 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -213,8 +213,8 @@ p a { <li>[Fix] Allow IP v4/v6 urls for remote avatars (Bug #11633)</li> <li>[Fix] Delete avatar files automatically (Bug #11631)</li> <li>[Fix] Automatically add selected columsn to group by statements in the converter (Bug #11465)</li> - -</ul> + <li>[Fix] Allow posts without subjects to be clicked in the MCP (Bug #11483)</li> + </ul> </div> <a href="#top">Top</a> diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index c318472b7d..7d8ccd32d9 100755 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -378,7 +378,7 @@ class mcp_reports 'FORUM_NAME' => (!$global_topic) ? $forum_data[$row['forum_id']]['forum_name'] : $user->lang['GLOBAL_ANNOUNCEMENT'], 'POST_ID' => $row['post_id'], - 'POST_SUBJECT' => $row['post_subject'], + 'POST_SUBJECT' => ($row['post_subject']) ? $row['post_subject'] : $user->lang['NO_SUBJECT'], 'POST_TIME' => $user->format_date($row['post_time']), 'REPORT_ID' => $row['report_id'], 'REPORT_TIME' => $user->format_date($row['report_time']), |