Fix missing limit in redirect
This commit is contained in:
parent
fef8a3c141
commit
1aecff854b
@ -276,6 +276,9 @@ if ((GETPOST('confirm_savestatement', 'alpha') || GETPOST('confirm_reconcile', '
|
|||||||
if ($offset) {
|
if ($offset) {
|
||||||
$param .= '&offset='.urlencode($offset);
|
$param .= '&offset='.urlencode($offset);
|
||||||
}
|
}
|
||||||
|
if ($limit) {
|
||||||
|
$param .= '&limit='.urlencode($limit);
|
||||||
|
}
|
||||||
if ($search_conciliated != '' && $search_conciliated != '-1') {
|
if ($search_conciliated != '' && $search_conciliated != '-1') {
|
||||||
$param .= '&search_conciliated='.urlencode($search_conciliated);
|
$param .= '&search_conciliated='.urlencode($search_conciliated);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user