From 5e24bcfedc7c7348f5de4e9839311f5c5b8e52c8 Mon Sep 17 00:00:00 2001 From: MarkBaker Date: Thu, 8 Jan 2015 01:23:11 +0000 Subject: [PATCH] Fix to getCellStyleXfByHashCode() method --- Classes/PHPExcel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PHPExcel.php b/Classes/PHPExcel.php index 27aa77ae..d27de51a 100644 --- a/Classes/PHPExcel.php +++ b/Classes/PHPExcel.php @@ -1011,7 +1011,7 @@ class PHPExcel */ public function getCellStyleXfByHashCode($pValue = '') { - foreach ($this->_cellXfStyleCollection as $cellStyleXf) { + foreach ($this->_cellStyleXfCollection as $cellStyleXf) { if ($cellStyleXf->getHashCode() == $pValue) { return $cellStyleXf; }