diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php index 787b383e579fd8ee4d759e9febd4f9dc7207838a..d73bb43186cb7ea6c9e3dd7e2f0ab199b2efdd4c 100644 --- a/civicrm/CRM/Report/Form.php +++ b/civicrm/CRM/Report/Form.php @@ -2845,6 +2845,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'); }