Bugfix: Work item 16960 - Previous calculation engine error conditions trigger cyclic reference errors

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@83263 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2011-11-25 14:37:47 +00:00
parent 6e7b84ef97
commit 68a0930f67
2 changed files with 2 additions and 0 deletions

View File

@ -3590,6 +3590,7 @@ class PHPExcel_Calculation {
// trigger an error, but nicely, if need be // trigger an error, but nicely, if need be
protected function _raiseFormulaError($errorMessage) { protected function _raiseFormulaError($errorMessage) {
$this->formulaError = $errorMessage; $this->formulaError = $errorMessage;
$this->debugLogStack = array();
if (!$this->suppressFormulaErrors) throw new Exception($errorMessage); if (!$this->suppressFormulaErrors) throw new Exception($errorMessage);
trigger_error($errorMessage, E_USER_ERROR); trigger_error($errorMessage, E_USER_ERROR);
} // function _raiseFormulaError() } // function _raiseFormulaError()

View File

@ -42,6 +42,7 @@ Fixed in SVN:
- Bugfix: (MBaker) Work item 16643 - Bug In Cache System (cell reference when throwing caching errors) - Bugfix: (MBaker) Work item 16643 - Bug In Cache System (cell reference when throwing caching errors)
- Bugfix: (MBaker) Work item 16895 - PHP Invalid index notice on writing excel file when active sheet has been deleted - Bugfix: (MBaker) Work item 16895 - PHP Invalid index notice on writing excel file when active sheet has been deleted
- Bugfix: (MBaker) Work item 16956 - External links in Excel2010 files cause Fatal error - Bugfix: (MBaker) Work item 16956 - External links in Excel2010 files cause Fatal error
- Bugfix: (MBaker) Work item 16960 - Previous calculation engine error conditions trigger cyclic reference errors
- General: (MBaker) Work item 15405 - Two easy to fix Issues concerning PHPExcel_Token_Stack (l10n/UC) - General: (MBaker) Work item 15405 - Two easy to fix Issues concerning PHPExcel_Token_Stack (l10n/UC)
- General: (MBaker) Work item 15461 - Locale file paths not fit for windows - General: (MBaker) Work item 15461 - Locale file paths not fit for windows
- General: (MBaker) Work item 16643 - Add file directory as a cache option for cache_to_discISAM - General: (MBaker) Work item 16643 - Add file directory as a cache option for cache_to_discISAM