diff --git a/docs/changes/1.x/1.3.0.md b/docs/changes/1.x/1.3.0.md
index 4e38e38f91..f55fc6d262 100644
--- a/docs/changes/1.x/1.3.0.md
+++ b/docs/changes/1.x/1.3.0.md
@@ -10,6 +10,7 @@
- Word2007 Writer: Support for field REF by [@crystoline](https://github.com/crystoline) in [#2652](https://github.com/PHPOffice/PHPWord/pull/2652)
- Word2007 Reader : Support for FormFields by [@vincentKool](https://github.com/vincentKool) in [#2653](https://github.com/PHPOffice/PHPWord/pull/2653)
- RTF Writer : Support for Table Border Style fixing [#345](https://github.com/PHPOffice/PHPWord/issues/345) by [@Progi1984](https://github.com/Progi1984) in [#2656](https://github.com/PHPOffice/PHPWord/pull/2656)
+- Word2007 Reader: Support the page break () by [@stanolacko](https://github.com/stanolacko) in [#2662](https://github.com/PHPOffice/PHPWord/pull/2662)
### Bug fixes
diff --git a/src/PhpWord/Reader/Word2007/AbstractPart.php b/src/PhpWord/Reader/Word2007/AbstractPart.php
index 0f3d8bf711..98a74772cd 100644
--- a/src/PhpWord/Reader/Word2007/AbstractPart.php
+++ b/src/PhpWord/Reader/Word2007/AbstractPart.php
@@ -236,18 +236,21 @@ protected function readParagraph(XMLReader $xmlReader, DOMElement $domNode, $par
$fontStyle = $this->readFontStyle($xmlReader, $domNode);
$nodes = $xmlReader->getElements('w:r', $domNode);
foreach ($nodes as $node) {
- $instrText = $xmlReader->getValue('w:instrText', $node);
- if ($xmlReader->elementExists('w:fldChar', $node)) {
- $fldCharType = $xmlReader->getAttribute('w:fldCharType', $node, 'w:fldChar');
- if ('begin' == $fldCharType) {
- $ignoreText = true;
- } elseif ('end' == $fldCharType) {
- $ignoreText = false;
- }
+ if ($xmlReader->elementExists('w:lastRenderedPageBreak', $node)) {
+ $parent->addPageBreak();
}
+ $instrText = $xmlReader->getValue('w:instrText', $node);
if (null !== $instrText) {
$textContent .= '{' . $instrText . '}';
} else {
+ if ($xmlReader->elementExists('w:fldChar', $node)) {
+ $fldCharType = $xmlReader->getAttribute('w:fldCharType', $node, 'w:fldChar');
+ if ('begin' == $fldCharType) {
+ $ignoreText = true;
+ } elseif ('end' == $fldCharType) {
+ $ignoreText = false;
+ }
+ }
if (false === $ignoreText) {
$textContent .= $xmlReader->getValue('w:t', $node);
}
diff --git a/src/PhpWord/Reader/Word2007/Document.php b/src/PhpWord/Reader/Word2007/Document.php
index da42bddc9e..87a24f4198 100644
--- a/src/PhpWord/Reader/Word2007/Document.php
+++ b/src/PhpWord/Reader/Word2007/Document.php
@@ -138,8 +138,6 @@ private function readSectionStyle(XMLReader $xmlReader, DOMElement $domNode)
/**
* Read w:p node.
- *
- * @todo
*/
private function readWPNode(XMLReader $xmlReader, DOMElement $node, Section &$section): void
{