]> git.mxchange.org Git - friendica.git/commitdiff
Better (well, different) reshares.
authorThomas Willingham <founder@kakste.com>
Mon, 9 Jul 2012 18:07:33 +0000 (19:07 +0100)
committerThomas Willingham <founder@kakste.com>
Mon, 9 Jul 2012 18:07:33 +0000 (19:07 +0100)
mod/share.php

index 761220ad7fca94509f6a4d7cf3619d8eaacff821..4ec27d6bf4e2bc7322dceb3c136bbda2bf33f4df 100644 (file)
@@ -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