Whoopsee... managed to introduce a bug when changing is_null() to === NULL for performance reasons, and reversed the logic of the test..... this is the fix

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@86204 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2012-02-08 22:33:31 +00:00
parent a047194ef8
commit b41407743e
1 changed files with 1 additions and 1 deletions

View File

@ -3222,7 +3222,7 @@ class PHPExcel_Calculation {
}
} else {
// echo 'Reference is a single Cell<br />';
if ($pCell !== NULL) {
if ($pCell === NULL) {
// We can't access the cell, so return a REF error
$cellValue = PHPExcel_Calculation_Functions::REF();
} else {