diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php index 647074bc1d6ee1bec4b620ac6aeadcb08935e038..8cf88d9dccf8e6704898bca43e32c6d5cab39d4f 100644 --- a/civicrm/CRM/Report/Form.php +++ b/civicrm/CRM/Report/Form.php @@ -2827,6 +2827,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'); }