I use carbogrid with my database, and i got this in my log :
ERROR - 2012-11-03 21:09:20 --> Severity: Notice --> Array to string conversion /application/modules/account/views/carbo/carbo_grid.php 42
carbo_grid.php
41. foreach ($command as $key => $value) {
42. $command_str .= "'" . $key . "': '" . $value . "',";
43. }
in my controller i have this:
$commands['delete']['toolbar'] = false;
$params = array(
'id' => 'users',
'table' => 'roles',
'url' => 'admin/single',
'uri_param' => $grid,
'columns' => $columns,
//'columns_visible' => array(0,2,3,4),
'commands' => $commands,
'ajax' => TRUE
);
I do not know what to do, apart from disabling errors :/
