In my controller I set the limit
to 7, but when it does paging, the first page comes with 3, 4, 1, and goes varied.
public $paginate = array(
'limit' => 7,
);
This is what I do in my controller, do I have to do something else?
In my controller I set the limit
to 7, but when it does paging, the first page comes with 3, 4, 1, and goes varied.
public $paginate = array(
'limit' => 7,
);
This is what I do in my controller, do I have to do something else?