Skip to content

Commit

Permalink
Reviewed and merged PHPOffice#612.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Syroeshko committed Feb 6, 2016
1 parent 995dc68 commit 53a5369
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/PhpWord/Reader/MsDoc.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function loadOLE($filename)
// 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)
Expand Down

0 comments on commit 53a5369

Please sign in to comment.