From 1971b9645206abe8eee3b5fe9f355fef4e23f914 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 3 Nov 2012 03:54:19 -0700 Subject: share mostly working, preview still horked --- mod/share.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'mod/share.php') diff --git a/mod/share.php b/mod/share.php index 8d9cd16ea..33aa9eede 100644 --- a/mod/share.php +++ b/mod/share.php @@ -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 = '[share]' . "\n"; - $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\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" ; -- cgit v1.2.3