You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`class TinyMVC_Library_Pagination
{
var $total_count;
function __construct($total_count)
{
}
}`
Getting error:
Missing argument 1 for TinyMVC_Library_Pagination::__construct(), called in /home/admin/web/rusex.su/public_html/tinymvc/sysfiles/plugins/tinymvc_load.php on line 112 and defined
How to correctly pass parameters to the constructor?
The text was updated successfully, but these errors were encountered:
Hello!
I'm writing a pagination plugin and I'm having a problem.
$this->load->library('pagination','pag');
$this->pag(30);
file tinymvc_library_pagination.php
`class TinyMVC_Library_Pagination
{
var $total_count;
function __construct($total_count)
{
}
}`
Getting error:
How to correctly pass parameters to the constructor?
The text was updated successfully, but these errors were encountered: