share mostly working, preview still horked
This commit is contained in:
+7
-8
@@ -4,23 +4,22 @@ require_once('bbcode.php');
|
||||
|
||||
function share_init(&$a) {
|
||||
|
||||
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
||||
$post_id = ((argc() > 1) ? intval(argv(1)) : 0);
|
||||
if((! $post_id) || (! local_user()))
|
||||
killme();
|
||||
|
||||
$r = q("SELECT item.*, contact.network FROM `item`
|
||||
left join contact on `item`.`contact-id` = `contact`.`id`
|
||||
WHERE `item`.`id` = %d AND `item`.`uid` = %d LIMIT 1",
|
||||
|
||||
$r = q("SELECT * from item WHERE id = %d AND uid = %d and item_restrict = 0 LIMIT 1",
|
||||
intval($post_id),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! count($r) || ($r[0]['private'] == 1))
|
||||
if((! $r) || $r[0]['item_private'])
|
||||
killme();
|
||||
|
||||
$o = '[share]';
|
||||
xchan_query($r);
|
||||
|
||||
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
|
||||
$o = '[share]' . "\n";
|
||||
|
||||
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author']['xchan_url'] . ']' . $r[0]['author']['xchan_name'] . '[/url]' . "\n";
|
||||
if($r[0]['title'])
|
||||
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
|
||||
$o .= $r[0]['body'] . "\n" ;
|
||||
|
||||
Reference in New Issue
Block a user