mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-13 06:48:52 +00:00
[ticket/11129] Added headers to empty subscription state
"You are not subscribed to any forums". While correct, could lead to confusion. What's missing is a header right above the message that says "Watched Topics" to match the "Watched Forums" header above. This will assert the idea that there are two separate watchable sections. As is, it looks like that message is talking about the "Watched Forums" section, since it's listed under that header. PHPBB3-11129
This commit is contained in:
parent
ab628cbdb9
commit
51a869b13a
1 changed files with 16 additions and 2 deletions
|
@ -34,6 +34,13 @@
|
|||
<!-- END forumrow -->
|
||||
</ul>
|
||||
<!-- ELSEIF S_FORUM_NOTIFY -->
|
||||
<ul class="topiclist">
|
||||
<li class="header">
|
||||
<dl class="icon">
|
||||
<dt>{L_WATCHED_FORUMS}</dt>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<p><strong>{L_NO_WATCHED_FORUMS}</strong></p>
|
||||
<!-- ENDIF -->
|
||||
|
||||
|
@ -83,14 +90,21 @@
|
|||
<ul class="linklist">
|
||||
<li class="rightside pagination">
|
||||
<!-- IF TOTAL_TOPICS --> {TOTAL_TOPICS} • <!-- ENDIF -->
|
||||
<!-- IF .pagination -->
|
||||
<!-- IF .pagination -->
|
||||
<!-- INCLUDE pagination.html -->
|
||||
<!-- ELSE -->
|
||||
<!-- ELSE -->
|
||||
{PAGE_NUMBER}
|
||||
<!-- ENDIF -->
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ELSEIF S_TOPIC_NOTIFY -->
|
||||
<ul class="topiclist">
|
||||
<li class="header">
|
||||
<dl class="icon">
|
||||
<dt>{L_WATCHED_TOPICS}</dt>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<p><strong>{L_NO_WATCHED_TOPICS}</strong></p>
|
||||
<!-- ENDIF -->
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue