Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
This commit is contained in:
parent
99b375613d
commit
1ba2ae0cec
|
@ -849,7 +849,11 @@ class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract implements PHPE
|
|||
break;
|
||||
case "inlineStr":
|
||||
// echo 'Inline String', PHP_EOL;
|
||||
if (isset($c->f)) {
|
||||
$this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError');
|
||||
} else {
|
||||
$value = $this->parseRichText($c->is);
|
||||
}
|
||||
break;
|
||||
case "e":
|
||||
// echo 'Error', PHP_EOL;
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
Planned for 1.8.2
|
||||
- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference
|
||||
- Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
|
||||
|
||||
|
||||
2015-04-30 (v1.8.1):
|
||||
|
|
Loading…
Reference in New Issue