![]() |
Pagination don't work - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forum-28.html) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forum-30.html) +--- Thread: Pagination don't work (/thread-74851.html) |
Pagination don't work - dimonisse - 11-15-2019 Hi all! I'm trying to configure pagination for my project, I do everything according to the documentation, but I get an error. With version 3, there were no such problems (( PHP Code: lass User extends Controller{ Model: PHP Code: class UserModel extends Model Quote:Error RE: Pagination don't work -> problem resolved - dimonisse - 11-15-2019 as it turned out, in the file \system\Model.php, line 442 $ this-> tempReturnType = $ this-> returnType; costs AFTER $ row = $ row-> getResult ($ this-> tempReturnType); I moved it before this expression and it worked. |