diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2011-08-27 00:25:38 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-08-27 00:25:38 +0200 |
commit | 6a2b13632de1ab39cdd126785a4aa2057fa9d6ab (patch) | |
tree | 82b820acc91b37bcc9e52a2cbd540dd6fc426fac /phpBB/includes/mcp/mcp_pm_reports.php | |
parent | 5c2243360d00b162b0f0f1547ee3742d13fb42cb (diff) | |
download | forums-6a2b13632de1ab39cdd126785a4aa2057fa9d6ab.tar forums-6a2b13632de1ab39cdd126785a4aa2057fa9d6ab.tar.gz forums-6a2b13632de1ab39cdd126785a4aa2057fa9d6ab.tar.bz2 forums-6a2b13632de1ab39cdd126785a4aa2057fa9d6ab.tar.xz forums-6a2b13632de1ab39cdd126785a4aa2057fa9d6ab.zip |
[ticket/10344] Add attachment icons to list of reported and queued posts/topics
PHPBB3-10344
Diffstat (limited to 'phpBB/includes/mcp/mcp_pm_reports.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_pm_reports.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_pm_reports.php b/phpBB/includes/mcp/mcp_pm_reports.php index e61e8390c9..a8136b34df 100644 --- a/phpBB/includes/mcp/mcp_pm_reports.php +++ b/phpBB/includes/mcp/mcp_pm_reports.php @@ -293,6 +293,7 @@ class mcp_pm_reports 'REPORT_TIME' => $user->format_date($row['report_time']), 'RECIPIENTS' => implode(', ', $address_list[$row['msg_id']]), + 'ATTACH_ICON_IMG' => ($auth->acl_get('u_download') && $row['message_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '', )); } } |