Skip to content

Commit 699f663

Browse files
authored
Merge pull request #340 from battye/bugfix/show-unapproved-icon
Bug fix to show unapproved icon on topics list
2 parents 03c6ab5 + 0345455 commit 699f663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

styles/prosilver/template/common/topic_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</a>
7171
{% endif %}
7272
<a href="{{ topics.U_VIEW_TOPIC }}" class="topictitle">{{ topics.TOPIC_SUBJECT }}</a>{% if topics.TOPIC_CONTRIB_NAME %}<br /><em>{% if topics.CONTRIB_TYPE %}{{ topics.CONTRIB_TYPE }}{% endif %} {% if topics.U_VIEW_TOPIC_CONTRIB %} &raquo; <a href="{{ topics.U_VIEW_TOPIC_CONTRIB }}">{{ topics.TOPIC_CONTRIB_NAME }}</a>{% else %} &raquo; {{ topics.TOPIC_CONTRIB_NAME }}{% endif %} {% if topics.U_VIEW_TOPIC_CONTRIB_SUPPORT %} &raquo; <a href="{{ topics.U_VIEW_TOPIC_CONTRIB_SUPPORT }}">{{ lang('CONTRIB_SUPPORT') }}</a>{% else %} &raquo; {{ topics.TOPIC_CONTRIB_NAME }}{% endif %}</em>{% endif %}
73-
{% if not topics.TOPIC_APPROVED or not topics.POSTS_APPROVED %}{{ topics.UNAPPROVED_IMG }} {% endif %}
73+
{% if not topics.TOPIC_APPROVED or not topics.POSTS_APPROVED %}<i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{{ lang('POSTS_UNAPPROVED') }}</span> {% endif %}
7474
{% if topics.TOPIC_REPORTED %}<i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{{ lang('TOPIC_REPORTED') }}</span>{% endif %}<br />
7575
{% if topics.pagination|length %}
7676
<div class="pagination">

0 commit comments

Comments
 (0)