From cc38c8e5497a8a86c3cc23f4f9e279a412c57727 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 16 Mar 2013 16:07:11 +0400 Subject: remove LIBXML_NOEMPTYTAG because of double
s - the #357 issue with htmlpurifier might not be relevant anymore because of htmLawed switch, but
s are annoying --- include/functions.php | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 4e16c9f19..dd40b9529 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2575,7 +2575,6 @@ $xpath = new DOMXPath($doc); $entries = $xpath->query('(//a[@href]|//img[@src])'); - $br_inserted = 0; foreach ($entries as $entry) { @@ -2594,22 +2593,11 @@ if (strtolower($entry->nodeName) == "a") { $entry->setAttribute("target", "_blank"); } - - if (strtolower($entry->nodeName) == "img" && !$br_inserted) { - $br = $doc->createElement("br"); - - if ($entry->parentNode->nextSibling) { - $entry->parentNode->insertBefore($br, $entry->nextSibling); - $br_inserted = 1; - } - - } } $node = $doc->getElementsByTagName('body')->item(0); - // http://tt-rss.org/redmine/issues/357 - return $doc->saveXML($node, LIBXML_NOEMPTYTAG); + return $doc->saveXML($node); } function check_for_update($link) { @@ -3774,7 +3762,7 @@ // http://tt-rss.org/forum/viewtopic.php?f=1&t=970 if ($node) - return $doc->saveXML($node, LIBXML_NOEMPTYTAG); + return $doc->saveXML($node); else return $html; } -- cgit v1.2.3