Loading CHANGELOG.md +5 −0 Original line number Diff line number Diff line CHANGELOG ========= 6.0.10 (19/17/2024) ------------------- - [Fix] Gestion correcte des contenus multilignes dans les cellules des tableurs 6.0.9 (05/07/2024) ------------------ Loading src/Calc/Cell.php +3 −0 Original line number Diff line number Diff line Loading @@ -105,6 +105,9 @@ class Cell $content = ''; foreach ($childs as $child) { if ($child->tagName === 'text:p') { if ($content != ''){ $content .= "\n"; } $content .= $child->textContent; } } Loading Loading
CHANGELOG.md +5 −0 Original line number Diff line number Diff line CHANGELOG ========= 6.0.10 (19/17/2024) ------------------- - [Fix] Gestion correcte des contenus multilignes dans les cellules des tableurs 6.0.9 (05/07/2024) ------------------ Loading
src/Calc/Cell.php +3 −0 Original line number Diff line number Diff line Loading @@ -105,6 +105,9 @@ class Cell $content = ''; foreach ($childs as $child) { if ($child->tagName === 'text:p') { if ($content != ''){ $content .= "\n"; } $content .= $child->textContent; } } Loading