1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Fixed #2244 - Plugins Online pagination.

This commit is contained in:
Cameron
2017-01-04 11:59:57 -08:00
parent 4675d16b31
commit 703e514045

View File

@@ -616,7 +616,13 @@ class pluginManager{
if($total > $amount)
{
$parms = $total.",".$amount.",".$from.",".e_SELF.'?mode='.$_GET['mode'].'&frm=[FROM]';
$parms = $total.",".$amount.",".$from.",".e_SELF.'?mode=online&frm=[FROM]';
if(!empty($srch))
{
$parms .= '&srch='.$srch;
}
$text .= "<div class='control-group form-inline input-inline' style='text-align:center;margin-top:10px'>".$tp->parseTemplate("{NEXTPREV=$parms}",TRUE)."</div>";
}