Reviewed and merged #612.

This commit is contained in:
Roman Syroeshko 2016-02-06 22:14:29 +04:00
parent 995dc68706
commit 53a53695ff
2 changed files with 4 additions and 1 deletions

View File

@ -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)

View File

@ -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)