From: Andrew Dolgov Date: Thu, 11 Nov 2010 12:54:30 +0000 (+0300) Subject: use dom to generate linebreaks after images in articles X-Git-Tag: 1.5.0~280 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=fa403733954f809286936d2ad3e39d3ab5395c26;p=tt-rss.git use dom to generate linebreaks after images in articles --- diff --git a/functions.php b/functions.php index 126ad27c..f94da952 100644 --- a/functions.php +++ b/functions.php @@ -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); + } } diff --git a/tt-rss.css b/tt-rss.css index 0fbd1d93..09a1957e 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -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 {