Fixed pageNavLinkGroup inside discussionList section

Luxus

Well-known member
In the report_search template the pageNavLinkGroup div is inside the discussionList section div, making it inconsistent with the pageNavLinkGroup placements in forums where they are outside of the discussionList section div. This is a problem if you have borders around the discussionList sections as the pageNavLinkGroup appears trapped inside the discussion list section. So I suggest to move the pageNavLinkGroup div outside the discussionList section in the report_search template.

This is how it's now:

Code:
<div class="discussionList section">
.
.
.
	<div class="pageNavLinkGroup">
		<xen:pagenav link="reports/search" linkparams="{xen:array 'user_id={$user.user_id}'}" page="{$page}" perpage="{$perPage}" total="{$totalReports}" />
	</div>
</div>

And this is how it should be:

Code:
<div class="discussionList section">
.
.
.
</div>

<div class="pageNavLinkGroup">
	<xen:pagenav link="reports/search" linkparams="{xen:array 'user_id={$user.user_id}'}" page="{$page}" perpage="{$perPage}" total="{$totalReports}" />
</div>
 
Top Bottom