1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-10 08:25:42 +02:00
git-svn-id: file:///svn/phpbb/trunk@7678 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-05-25 17:16:48 +00:00
parent 20993d5cf1
commit 650f5a529c
2 changed files with 3 additions and 3 deletions
phpBB

@ -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>

@ -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']),