-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
parent filter is not working .
Solution
open file /application/core/SB_model.php , change function getComboselect()
function getComboselect( $params , $nested = array())
{
if(isset($params[3]) AND !empty($params[4]) ){
$table = $params[0];
$query = $this->db->get_where( $table , array( $params[3] => $params[4] ));
$rows = $query->result();
}else{
$table = $params[0];
$query = $this->db->get( $table );
$rows = $query->result();
}
$query->free_result();
return $rows;
}Reactions are currently unavailable