forked from extern/egroupware
fixed only partcial csv export in timesheet, get_rows was not using the num_rows parameter
This commit is contained in:
parent
ebfa3d6128
commit
2a806e7484
@ -838,7 +838,8 @@ class so_sql
|
||||
}
|
||||
}
|
||||
$rows = (array) $this->search($criteria,false,$query['order']?$query['order'].' '.$query['sort']:'',
|
||||
'','%',false,'OR',(int)$query['start'],$query['col_filter'],$join,$need_full_no_count);
|
||||
'','%',false,'OR',$query['num_rows']?array((int)$query['start'],$query['num_rows']):(int)$query['start'],
|
||||
$query['col_filter'],$join,$need_full_no_count);
|
||||
|
||||
return $this->total;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user