[TwitterBridge] Reorder quoted tweets (#921)

Put content before quoted tweet to match the display order on Twitter
This commit is contained in:
triatic 2018-11-12 18:59:46 +00:00 committed by LogMANOriginal
parent 78c69b08f0
commit 51634a72e0
1 changed files with 2 additions and 2 deletions

View File

@ -258,14 +258,14 @@ EOD;
}
$item['content'] = <<<EOD
{$item['content']}
<hr>
<div style="display: inline-block; vertical-align: top;">
<blockquote>{$cleanedQuotedTweet}</blockquote>
</div>
<div style="display: block; vertical-align: top;">
<blockquote>{$quotedImage_html}</blockquote>
</div>
<hr>
{$item['content']}
EOD;
}