[TwitterBridge] Reorder quoted tweets (#921)
Put content before quoted tweet to match the display order on Twitter
This commit is contained in:
parent
78c69b08f0
commit
51634a72e0
1 changed files with 2 additions and 2 deletions
|
@ -258,14 +258,14 @@ EOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
$item['content'] = <<<EOD
|
$item['content'] = <<<EOD
|
||||||
|
{$item['content']}
|
||||||
|
<hr>
|
||||||
<div style="display: inline-block; vertical-align: top;">
|
<div style="display: inline-block; vertical-align: top;">
|
||||||
<blockquote>{$cleanedQuotedTweet}</blockquote>
|
<blockquote>{$cleanedQuotedTweet}</blockquote>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: block; vertical-align: top;">
|
<div style="display: block; vertical-align: top;">
|
||||||
<blockquote>{$quotedImage_html}</blockquote>
|
<blockquote>{$quotedImage_html}</blockquote>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
|
||||||
{$item['content']}
|
|
||||||
EOD;
|
EOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue