aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-01 22:24:44 -0700
committerfriendica <info@friendica.com>2013-10-01 22:24:44 -0700
commitf7aaa2290aef695db00f05cd6c5a7bc5a0f06e90 (patch)
tree90974102b5fc06f51c0b45630dd5d1f74386cf2b /include
parent494090a3b7de23686d96530afd9509e50bff6362 (diff)
parent60d306f762aab6a1cd11ffeebbe3d3bd06ba0ddd (diff)
downloadvolse-hubzilla-f7aaa2290aef695db00f05cd6c5a7bc5a0f06e90.tar.gz
volse-hubzilla-f7aaa2290aef695db00f05cd6c5a7bc5a0f06e90.tar.bz2
volse-hubzilla-f7aaa2290aef695db00f05cd6c5a7bc5a0f06e90.zip
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 9b9c954c1..756d73aba 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -131,7 +131,7 @@ function bb_ShareAttributes($match) {
// FIXME - this should really be a wall-item-ago so it will get updated on the client
$reldate = (($posted) ? relative_date($posted) : '');
- $headline = '<div class="shared_header">';
+ $headline = '<div class="shared_container"> <div class="shared_header">';
if ($avatar != "")
$headline .= '<img src="' . $avatar . '" alt="' . $author . '" height="32" width="32" />';
@@ -146,7 +146,7 @@ function bb_ShareAttributes($match) {
$headline .= '<span>' . $fmt . '</span></div>';
- $text = $headline . '<div class="reshared-content">' . trim($match[2]) . '</div>';
+ $text = $headline . '<div class="reshared-content">' . trim($match[2]) . '</div></div>';
return($text);
}