aboutsummaryrefslogtreecommitdiffstats
path: root/mod/share.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/share.php')
-rw-r--r--mod/share.php15
1 files changed, 7 insertions, 8 deletions
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" ;