Bugfix: Work item 15707 - ini_set() call in Calculation class destructor

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@72060 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2011-04-19 21:40:35 +00:00
parent 631834b4d6
commit c7f99d0d98
2 changed files with 4 additions and 1 deletions

View File

@ -1698,7 +1698,9 @@ class PHPExcel_Calculation {
public function __destruct() {
ini_set('precision',$this->_savedPrecision);
if ($this->_savedPrecision != ini_get('precision')) {
ini_set('precision',$this->_savedPrecision);
}
}
/**

View File

@ -28,6 +28,7 @@ Fixed in SVN:
- Bugfix: (MBaker) Work item 15518 - PCLZip library issue
- Bugfix: (MBaker) Work item 15537 - Excel2007 Reader canRead function bug
- Bugfix: (MBaker) Support for Excel functions whose return can be used as either a value or as a cell reference depending on its context within a formula
- Bugfix: (gilles06) Work item 15707 - ini_set() call in Calculation class destructor
- 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