1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-07 19:29:15 +00:00

remove LIBXML_NOEMPTYTAG because of double <br/>s - the #357 issue with

htmlpurifier might not be relevant anymore because of htmLawed switch,
but <br/>s are annoying
This commit is contained in:
Andrew Dolgov
2013-03-16 16:07:11 +04:00
parent ef1162593f
commit cc38c8e549
7 changed files with 9 additions and 21 deletions

View File

@@ -44,7 +44,7 @@ class Af_Buttersafe extends Plugin {
}
if ($basenode) {
$article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
$article["content"] = $doc->saveXML($basenode);
$article["plugin_data"] = "buttersafe,$owner_uid:" . $article["plugin_data"];
}
}

View File

@@ -44,7 +44,7 @@ class Af_Explosm extends Plugin {
}
if ($basenode) {
$article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
$article["content"] = $doc->saveXML($basenode);
$article["plugin_data"] = "explosm,$owner_uid:" . $article["plugin_data"];
}
}

View File

@@ -44,7 +44,7 @@ class Af_GoComics extends Plugin {
}
if ($basenode) {
$article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
$article["content"] = $doc->saveXML($basenode);
$article["plugin_data"] = "gocomics,$owner_uid:" . $article["plugin_data"];
}
}

View File

@@ -44,7 +44,7 @@ class Af_PennyArcade extends Plugin {
}
if ($basenode) {
$article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
$article["content"] = $doc->saveXML($basenode);
$article["plugin_data"] = "pennyarcade,$owner_uid:" . $article["plugin_data"];
}
}

View File

@@ -113,7 +113,7 @@ class Af_RedditImgur extends Plugin {
$node = $doc->getElementsByTagName('body')->item(0);
if ($node && $found) {
$article["content"] = $doc->saveXML($node, LIBXML_NOEMPTYTAG);
$article["content"] = $doc->saveXML($node);
if (!$force) $article["plugin_data"] = "redditimgur,$owner_uid:" . $article["plugin_data"];
}
}