diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php index 51cd5459709080d008e31b119838a889fb2c3507..45932218bc6e2f5abe3e317ffdcd31e22b2bf6ae 100644 --- a/civicrm/CRM/Report/Form.php +++ b/civicrm/CRM/Report/Form.php @@ -2806,6 +2806,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'); }