diff options
| author | kasimi <mail@kasimi.net> | 2017-10-27 11:04:22 +0200 |
|---|---|---|
| committer | kasimi <mail@kasimi.net> | 2017-10-27 11:04:22 +0200 |
| commit | a35a225adfbf1cc8f9aa20f9db11103e8124d395 (patch) | |
| tree | f0b86f461fb228d095ba84a5893f79d323203544 | |
| parent | 2c01fe67e9313565741f20d207ffb289b1d0b2d3 (diff) | |
| download | forums-a35a225adfbf1cc8f9aa20f9db11103e8124d395.tar forums-a35a225adfbf1cc8f9aa20f9db11103e8124d395.tar.gz forums-a35a225adfbf1cc8f9aa20f9db11103e8124d395.tar.bz2 forums-a35a225adfbf1cc8f9aa20f9db11103e8124d395.tar.xz forums-a35a225adfbf1cc8f9aa20f9db11103e8124d395.zip | |
[ticket/15423] Fix wrong title for topic's "Unappproved posts" icon
PHPBB3-15423
| -rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index 16d972056d..7291e3a617 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -167,8 +167,8 @@ <!-- ENDIF --> <a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a> <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --> - <a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_UNAPPROVED}"> - <i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_UNAPPROVED}</span> + <a href="{topicrow.U_MCP_QUEUE}" title="<!-- IF topicrow.S_TOPIC_UNAPPROVED -->{L_TOPIC_UNAPPROVED}<!-- ELSE -->{L_POSTS_UNAPPROVED}<!-- ENDIF -->"> + <i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only"><!-- IF topicrow.S_TOPIC_UNAPPROVED -->{L_TOPIC_UNAPPROVED}<!-- ELSE -->{L_POSTS_UNAPPROVED}<!-- ENDIF --></span> </a> <!-- ENDIF --> <!-- IF topicrow.S_TOPIC_DELETED --> |
