Merge branch 'master' of git.fakecake.org:tt-rss
This commit is contained in:
commit
1727ceabca
3 changed files with 3 additions and 1 deletions
|
@ -264,6 +264,7 @@ div.cdmContentInner p {
|
|||
|
||||
div.cdmContentInner iframe {
|
||||
min-width : 50%;
|
||||
max-width : 98%;
|
||||
}
|
||||
|
||||
div.cdmHeader span.author {
|
||||
|
|
|
@ -1012,6 +1012,7 @@ div.postContent p {
|
|||
|
||||
div.postContent iframe {
|
||||
min-width : 50%;
|
||||
max-width : 98%;
|
||||
}
|
||||
|
||||
div.postHeader span.author {
|
||||
|
|
|
@ -190,7 +190,7 @@ class Af_RedditImgur extends Plugin {
|
|||
|
||||
if (!in_array($aentry->getAttribute("content"), $urls)) {
|
||||
$img = $doc->createElement('img');
|
||||
$img->setAttribute("src", $aentry->getAttribute("content"));
|
||||
$img->setAttribute("src", str_replace("?fb", "", $aentry->getAttribute("content")));
|
||||
$entry->parentNode->insertBefore($doc->createElement('br'), $entry);
|
||||
|
||||
$br = $doc->createElement('br');
|
||||
|
|
Loading…
Reference in a new issue