mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Export limit does not apply to admins
This commit is contained in:
parent
8c094fd6be
commit
fe18d21f4b
@ -288,7 +288,7 @@ abstract class bo_merge
|
|||||||
}
|
}
|
||||||
|
|
||||||
$config = config::read('phpgwapi');
|
$config = config::read('phpgwapi');
|
||||||
if($config['export_limit']) {
|
if($config['export_limit'] && !$GLOBALS['egw_info']['user']['apps']['admin']) {
|
||||||
$ids = array_slice($ids, 0, (int)$config['export_limit']);
|
$ids = array_slice($ids, 0, (int)$config['export_limit']);
|
||||||
}
|
}
|
||||||
return $this->merge_string($content,$ids,$err,$mimetype,$fix);
|
return $this->merge_string($content,$ids,$err,$mimetype,$fix);
|
||||||
|
Loading…
Reference in New Issue
Block a user