Merge branch 'master' of git.fakecake.org:tt-rss
This commit is contained in:
commit
1727ceabca
|
@ -264,6 +264,7 @@ div.cdmContentInner p {
|
||||||
|
|
||||||
div.cdmContentInner iframe {
|
div.cdmContentInner iframe {
|
||||||
min-width : 50%;
|
min-width : 50%;
|
||||||
|
max-width : 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmHeader span.author {
|
div.cdmHeader span.author {
|
||||||
|
|
|
@ -1012,6 +1012,7 @@ div.postContent p {
|
||||||
|
|
||||||
div.postContent iframe {
|
div.postContent iframe {
|
||||||
min-width : 50%;
|
min-width : 50%;
|
||||||
|
max-width : 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.postHeader span.author {
|
div.postHeader span.author {
|
||||||
|
|
|
@ -190,7 +190,7 @@ class Af_RedditImgur extends Plugin {
|
||||||
|
|
||||||
if (!in_array($aentry->getAttribute("content"), $urls)) {
|
if (!in_array($aentry->getAttribute("content"), $urls)) {
|
||||||
$img = $doc->createElement('img');
|
$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);
|
$entry->parentNode->insertBefore($doc->createElement('br'), $entry);
|
||||||
|
|
||||||
$br = $doc->createElement('br');
|
$br = $doc->createElement('br');
|
||||||
|
|
Loading…
Reference in New Issue