Fix for undefined index
PHP Notice: Undefined index: document in /home/stefan/Projects/garrcomm/PHPWord/src/PhpWord/Reader/Word2007.php on line 65 PHP Warning: Invalid argument supplied for foreach() in /home/stefan/Projects/garrcomm/PHPWord/src/PhpWord/Reader/Word2007.php on line 65
This commit is contained in:
parent
18760620b3
commit
54eb6e6f2c
|
|
@ -62,6 +62,9 @@ class Word2007 extends AbstractReader implements ReaderInterface
|
|||
foreach ($steps as $step) {
|
||||
$stepPart = $step['stepPart'];
|
||||
$stepItems = $step['stepItems'];
|
||||
if (!isset($relationships[$stepPart])) {
|
||||
continue;
|
||||
}
|
||||
foreach ($relationships[$stepPart] as $relItem) {
|
||||
$relType = $relItem['type'];
|
||||
if (isset($stepItems[$relType])) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue