1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-20 07:30:16 +01:00

[ticket/16237] fix unread link

PHPBB3-16237
This commit is contained in:
hanakin 2020-05-06 23:15:35 -10:00
parent 02fcfe5700
commit 13897b705a

@ -279,11 +279,13 @@
<!-- EVENT viewtopic_body_postrow_post_details_before -->
<p class="author">
{% if postrow.S_UNREAD_POST %}
<span>{{ Icon('iconify', 'fa:file', postrow.MINI_POST, true, 'c-topic-unread-icon') }}</span>
{% else %}
<span>{{ Icon('iconify', 'fa:file', postrow.MINI_POST, true, 'c-topic-icon') }}</span>
{% endif %}
<a class="unread" href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}">
{% if postrow.S_UNREAD_POST %}
<span>{{ Icon('iconify', 'fa:file', postrow.MINI_POST, true, 'c-topic-unread-icon') }}</span>
{% else %}
<span>{{ Icon('iconify', 'fa:file', postrow.MINI_POST, true, 'c-topic-icon') }}</span>
{% endif %}
</a>
<span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> &raquo; </span><time datetime="{postrow.POST_DATE_RFC3339}">{postrow.POST_DATE}</time>
</p>
<!-- EVENT viewtopic_body_postrow_post_details_after -->