Lack of interest Remove empty pageNavLinkGroup from html

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Luxus

Well-known member
Template: online_list
Line: 42-44

Code:
	<div class="pageNavLinkGroup">
		<xen:pagenav link="online" linkparams="{xen:array 'type={$userLimit}'}" page="{$page}" perpage="{$usersPerPage}" total="{$totalOnlineUsers}" />
	</div>

Should be

Code:
<xen:if hascontent="true">
	<div class="pageNavLinkGroup">
		<xen:contentcheck>
			<xen:pagenav link="online" linkparams="{xen:array 'type={$userLimit}'}" page="{$page}" perpage="{$usersPerPage}" total="{$totalOnlineUsers}" />
		</xen:contentcheck>
	</div>
</xen:if>
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Top Bottom