diff options
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_main_subscribed.html | 18 | 
1 files changed, 16 insertions, 2 deletions
| diff --git a/phpBB/styles/prosilver/template/ucp_main_subscribed.html b/phpBB/styles/prosilver/template/ucp_main_subscribed.html index 11957aa90d..84d1d897d4 100644 --- a/phpBB/styles/prosilver/template/ucp_main_subscribed.html +++ b/phpBB/styles/prosilver/template/ucp_main_subscribed.html @@ -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 --> | 
