diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php index eaca994d0b2ab6af87bd17bbb60676721e86b26f..2d521ec8a884deb35bc47c6af9608329eeef5c86 100644 --- a/civicrm/CRM/Report/Form.php +++ b/civicrm/CRM/Report/Form.php @@ -2831,6 +2831,11 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND $this->_absoluteUrl = TRUE; $this->addPaging = FALSE; } + elseif ($this->_outputMode == 'excel2007') { + $printOnly = TRUE; + $this->_absoluteUrl = TRUE; + $this->addPaging = FALSE; + } elseif ($this->_outputMode == 'group') { $this->assign('outputMode', 'group'); }