mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
fixed only partcial csv export in timesheet, get_rows was not using the num_rows parameter
This commit is contained in:
parent
ea3994993d
commit
336784d74e
@ -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