From: Thomas Willingham Date: Mon, 9 Jul 2012 18:07:33 +0000 (+0100) Subject: Better (well, different) reshares. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6621de63d99b65cc748992f84f8145a93adcce57;p=friendica.git Better (well, different) reshares. --- diff --git a/mod/share.php b/mod/share.php index 761220ad7f..4ec27d6bf4 100644 --- a/mod/share.php +++ b/mod/share.php @@ -22,11 +22,12 @@ function share_init(&$a) { $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n"; if($r[0]['title']) - $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; - $o .= $r[0]['body'] . "\n" ; + $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . $r[0]['title'] . '[/url]' . '[/b]' . "\n"; + else + $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . 'View Source' . '[/url]' . '[/b]' . "\n"; + $o .= $r[0]['body'] . "\n"; + + echo $o; - $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : ''); - - echo $o; killme(); -} +} \ No newline at end of file