Reviewed and merged #612.
This commit is contained in:
parent
995dc68706
commit
53a53695ff
|
|
@ -37,6 +37,9 @@ so installation via ZIP-archive download is not an option anymore. To install PH
|
|||
- `\PhpOffice\PhpWord\Shared\XMLReader` replaced by `\PhpOffice\Common\XMLReader`. - @Progi1984 #658
|
||||
- `\PhpOffice\PhpWord\Shared\XMLWriter` replaced by `\PhpOffice\Common\XMLWriter`. - @Progi1984 @RomanSyroeshko #658
|
||||
|
||||
### Fixed
|
||||
- `Undefined property` error while reading MS-DOC documents. - @jaberu #503 #612
|
||||
|
||||
|
||||
|
||||
0.12.1 (30 August 2015)
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ class MsDoc extends AbstractReader implements ReaderInterface
|
|||
// Get Summary Information data
|
||||
$this->_SummaryInformation = $ole->getStream($ole->summaryInformation);
|
||||
// Get Document Summary Information data
|
||||
$this->_DocumentSummaryInformation = $ole->getStream($ole->documentSummaryInformation);
|
||||
$this->_DocumentSummaryInformation = $ole->getStream($ole->docSummaryInfos);
|
||||
}
|
||||
|
||||
private function getNumInLcb($lcb, $iSize)
|
||||
|
|
|
|||
Loading…
Reference in New Issue