1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

use dom to generate linebreaks after images in articles

This commit is contained in:
Andrew Dolgov 2010-11-11 15:54:30 +03:00
parent 2ab31493c9
commit fa40373395
2 changed files with 12 additions and 3 deletions

View File

@ -3751,8 +3751,18 @@
rewrite_relative_url($site_url, $entry->getAttribute('src')));
}
if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
$entry->setAttribute("target", "_blank");
if (strtolower($entry->nodeName) == "a") {
if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
$entry->setAttribute("target", "_blank");
}
}
if (strtolower($entry->nodeName) == "img") {
$br = $doc->createElement("br");
if ($entry->parentNode->nextSibling)
$entry->parentNode->insertBefore($br, $entry->nextSibling);
}
}

View File

@ -46,7 +46,6 @@ div.postReply div.postContent {
div.postReply div.postContent img {
border-width : 0px;
max-width : 98%;
display : block;
}
div.postReply div.postIcon {