diff options
Diffstat (limited to 'bridges/SIMARBridge.php')
-rw-r--r-- | bridges/SIMARBridge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/SIMARBridge.php b/bridges/SIMARBridge.php index 41d517b4..1e446cf5 100644 --- a/bridges/SIMARBridge.php +++ b/bridges/SIMARBridge.php @@ -48,7 +48,7 @@ class SIMARBridge extends BridgeAbstract { foreach($e_item->find('p') as $paragraph) { /* Remove empty paragraphs */ if (preg_match('/^(\W| )+$/', $paragraph->innertext) == 1) { - $paragraph->remove(); + $paragraph->outertext = ''; } } if ($e_item) { |