8b6b3e18 by Marty Penner

Promoting r260 to live. refs #1266

1 parent 0e96e5b2
...@@ -3563,8 +3563,9 @@ class PHPExcel_Calculation { ...@@ -3563,8 +3563,9 @@ class PHPExcel_Calculation {
3563 // trigger an error, but nicely, if need be 3563 // trigger an error, but nicely, if need be
3564 protected function _raiseFormulaError($errorMessage) { 3564 protected function _raiseFormulaError($errorMessage) {
3565 $this->formulaError = $errorMessage; 3565 $this->formulaError = $errorMessage;
3566 if (!$this->suppressFormulaErrors) throw new Exception($errorMessage); 3566 // if (!$this->suppressFormulaErrors) throw new \Exception($errorMessage);
3567 trigger_error($errorMessage, E_USER_ERROR); 3567 // trigger_error($errorMessage, E_USER_ERROR);
3568 echo 'hihihi';
3568 } // function _raiseFormulaError() 3569 } // function _raiseFormulaError()
3569 3570
3570 3571
......