From fe18d21f4bb15b9aee71264fba1d1089b35cf488 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 15 Mar 2011 15:13:46 +0000 Subject: [PATCH] Export limit does not apply to admins --- etemplate/inc/class.bo_merge.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.bo_merge.inc.php b/etemplate/inc/class.bo_merge.inc.php index 837995dacc..c8c3f61d3d 100644 --- a/etemplate/inc/class.bo_merge.inc.php +++ b/etemplate/inc/class.bo_merge.inc.php @@ -288,7 +288,7 @@ abstract class bo_merge } $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']); } return $this->merge_string($content,$ids,$err,$mimetype,$fix);