diff options
author | Richard McGirr <rmcgirr83@gmail.com> | 2017-04-20 06:04:27 -0400 |
---|---|---|
committer | Richard McGirr <rmcgirr83@gmail.com> | 2017-04-20 06:04:27 -0400 |
commit | ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b (patch) | |
tree | 80af0b4e0b36ddfbfd0664881237428994d0371c /phpBB/styles/prosilver/template/mcp_front.html | |
parent | 109aaff534c30e2b0cc9a4677b7ac924e9fee5a2 (diff) | |
download | forums-ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b.tar forums-ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b.tar.gz forums-ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b.tar.bz2 forums-ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b.tar.xz forums-ca3b715fdc9d1d8b37cd5eb710ee31c9117bd30b.zip |
[ticket/15144] Attachment icon display should only occur
if there are attachments in reports
https://tracker.phpbb.com/browse/PHPBB3-15144
PHPBB3-15144
Diffstat (limited to 'phpBB/styles/prosilver/template/mcp_front.html')
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_front.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_front.html b/phpBB/styles/prosilver/template/mcp_front.html index 97775814db..90793d072b 100644 --- a/phpBB/styles/prosilver/template/mcp_front.html +++ b/phpBB/styles/prosilver/template/mcp_front.html @@ -30,7 +30,7 @@ <dl> <dt> <div class="list-inner"> - <a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br /> + <a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> <!-- IF unapproved.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br /> {L_POSTED} {L_POST_BY_AUTHOR} {unapproved.AUTHOR_FULL} » {unapproved.POST_TIME} </div> </dt> @@ -86,12 +86,12 @@ <dl> <dt> <div class="list-inner"> - <a href="{report.U_POST_DETAILS}#reports" class="topictitle">{report.SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br /> + <a href="{report.U_POST_DETAILS}#reports" class="topictitle">{report.SUBJECT}</a> <!-- IF report.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br /> <span>{L_POSTED} {L_POST_BY_AUTHOR} {report.AUTHOR_FULL} » {report.POST_TIME}</span> </div> </dt> <dd class="moderation"> - <span>{L_REPORTED} {L_POST_BY_AUTHOR} {report.REPORTER_FULL} {L_REPORTED_ON_DATE} <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br /> + <span>{L_REPORTED} {L_POST_BY_AUTHOR} {report.REPORTER_FULL} {L_REPORTED_ON_DATE} <br /> {L_FORUM}{L_COLON} <a href="{report.U_FORUM}">{report.FORUM_NAME}</a></span> </dd> </dl> @@ -129,7 +129,7 @@ <dl> <dt> <div class="list-inner"> - <a href="{pm_report.U_PM_DETAILS}" class="topictitle">{pm_report.PM_SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br /> + <a href="{pm_report.U_PM_DETAILS}" class="topictitle">{pm_report.PM_SUBJECT}</a> <!-- IF pm_report.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br /> <span>{L_MESSAGE_BY_AUTHOR} {pm_report.PM_AUTHOR_FULL} » {pm_report.PM_TIME}</span><br /> <span>{L_MESSAGE_TO} {pm_report.RECIPIENTS}</span> </div> |