Skip to content

Commit 53a5369

Browse files
author
Roman Syroeshko
committed
Reviewed and merged #612.
1 parent 995dc68 commit 53a5369

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ so installation via ZIP-archive download is not an option anymore. To install PH
3737
- `\PhpOffice\PhpWord\Shared\XMLReader` replaced by `\PhpOffice\Common\XMLReader`. - @Progi1984 #658
3838
- `\PhpOffice\PhpWord\Shared\XMLWriter` replaced by `\PhpOffice\Common\XMLWriter`. - @Progi1984 @RomanSyroeshko #658
3939

40+
### Fixed
41+
- `Undefined property` error while reading MS-DOC documents. - @jaberu #503 #612
42+
4043

4144

4245
0.12.1 (30 August 2015)

src/PhpWord/Reader/MsDoc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private function loadOLE($filename)
149149
// Get Summary Information data
150150
$this->_SummaryInformation = $ole->getStream($ole->summaryInformation);
151151
// Get Document Summary Information data
152-
$this->_DocumentSummaryInformation = $ole->getStream($ole->documentSummaryInformation);
152+
$this->_DocumentSummaryInformation = $ole->getStream($ole->docSummaryInfos);
153153
}
154154

155155
private function getNumInLcb($lcb, $iSize)

0 commit comments

Comments
 (0)