diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-27 11:26:48 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-27 11:26:48 +0100 |
commit | c6daf4d41cd4de744f59ae0e8284eab2dc44fe19 (patch) | |
tree | 3363266e503e27f719ab5ed249315290eaf8ffed /mod | |
parent | 3f1dc22c0edc87e332c436d0426f9616e6500880 (diff) | |
download | volse-hubzilla-c6daf4d41cd4de744f59ae0e8284eab2dc44fe19.tar.gz volse-hubzilla-c6daf4d41cd4de744f59ae0e8284eab2dc44fe19.tar.bz2 volse-hubzilla-c6daf4d41cd4de744f59ae0e8284eab2dc44fe19.zip |
first the image than the body
Diffstat (limited to 'mod')
-rw-r--r-- | mod/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/share.php b/mod/share.php index 12938ae0d..7ed6cf9a6 100644 --- a/mod/share.php +++ b/mod/share.php @@ -60,7 +60,7 @@ function share_init(&$a) { "' message_id='".$r[0]['mid']."']"; if($r[0]['title']) $o .= '[b]'.$r[0]['title'].'[/b]'."\r\n"; - $o .= (($is_photo) ? $r[0]['body'] . "\r\n" . $photo_bb : $r[0]['body']); + $o .= (($is_photo) ? $photo_bb . "\r\n" . $r[0]['body'] : $r[0]['body']); $o .= "[/share]"; } |