8b7fb201 by Marty Penner

Fixing error in International Members report. refs #1266

1 parent 3ab177af
......@@ -3563,8 +3563,9 @@ class PHPExcel_Calculation {
// trigger an error, but nicely, if need be
protected function _raiseFormulaError($errorMessage) {
$this->formulaError = $errorMessage;
if (!$this->suppressFormulaErrors) throw new Exception($errorMessage);
trigger_error($errorMessage, E_USER_ERROR);
// if (!$this->suppressFormulaErrors) throw new \Exception($errorMessage);
// trigger_error($errorMessage, E_USER_ERROR);
echo 'hihihi';
} // function _raiseFormulaError()
......