mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 07:28:43 +01:00
Fix problems with merge print from list
- Dialog in document with 'Whole query' - Missing participants
This commit is contained in:
parent
fb2fe616b5
commit
43dd646102
@ -413,7 +413,7 @@ class calendar_merge extends bo_merge
|
|||||||
*/
|
*/
|
||||||
public function participant($plugin,$id,$n)
|
public function participant($plugin,$id,$n)
|
||||||
{
|
{
|
||||||
if(!is_array($id) || !$id['start']) {
|
if(!is_array($id) || !$id['start'] || !is_array($id['participants'])) {
|
||||||
$event = $this->bo->read(is_array($id) ? $id['id'] : $id, is_array($id) ? $id['recur_date'] : null);
|
$event = $this->bo->read(is_array($id) ? $id['id'] : $id, is_array($id) ? $id['recur_date'] : null);
|
||||||
} else {
|
} else {
|
||||||
$event = $id;
|
$event = $id;
|
||||||
|
@ -528,6 +528,7 @@ class calendar_uilist extends calendar_ui
|
|||||||
$query = is_array($session_name) ? $session_name : egw_session::appsession($session_name,'calendar');
|
$query = is_array($session_name) ? $session_name : egw_session::appsession($session_name,'calendar');
|
||||||
@set_time_limit(0); // switch off the execution time limit, as for big selections it's too small
|
@set_time_limit(0); // switch off the execution time limit, as for big selections it's too small
|
||||||
$query['num_rows'] = -1; // all
|
$query['num_rows'] = -1; // all
|
||||||
|
$query['csv_export'] = true;
|
||||||
$this->get_rows($query,$checked,$readonlys,!in_array($action,array('ical','document'))); // true = only return the id's
|
$this->get_rows($query,$checked,$readonlys,!in_array($action,array('ical','document'))); // true = only return the id's
|
||||||
}
|
}
|
||||||
// for calendar integration we have to fetch all rows and unset the not selected ones, as we can not filter by id
|
// for calendar integration we have to fetch all rows and unset the not selected ones, as we can not filter by id
|
||||||
|
Loading…
Reference in New Issue
Block a user