Fixing error in International Members report. refs #1266
Showing
1 changed file
with
3 additions
and
2 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment