Fix hyperlink reading in ODS files

This commit is contained in:
Balint Kovacs 2016-10-02 23:06:51 +02:00 committed by Adrien Crivelli
parent e95a267034
commit c99ec67d68
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 3 additions and 0 deletions

View File

@ -485,6 +485,9 @@ class OOCalc extends BaseReader implements IReader
$spanSection .= $spanData; $spanSection .= $spanData;
} }
array_push($dataArray, $spanSection); array_push($dataArray, $spanSection);
} elseif (isset($pData->a)) {
//Reading the hyperlinks in p
array_push($dataArray, $pData->a);
} else { } else {
array_push($dataArray, $pData); array_push($dataArray, $pData);
} }