Oops, re-kill the dead snake.

This commit is contained in:
Thomas Willingham 2012-11-04 20:02:41 +00:00
parent 190ab46e18
commit 973efa0c75
1 changed files with 6 additions and 7 deletions

View File

@ -22,12 +22,11 @@ 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]' . ' [url=' . $r[0]['plink'] . ']' . $r[0]['title'] . '[/url]' . '[/b]' . "\n";
else
$o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . 'View Source' . '[/url]' . '[/b]' . "\n";
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
$o .= $r[0]['body'] . "\n" ;
echo $o;
$o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : '');
echo $o;
killme();
}