Hi,
I am trying to use limit function of grocery but its not giving expected output.
$crud = new grocery_CRUD();
$crud->set_theme('datatables');
$crud->set_table('scores');
$crud->limit($limit);
$output = $crud->render();
there are two records and limit is set to 1 but i am getting two records.Please help
