X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=928ccdef263efc45b7f24f66c6c8c123f945888a;hb=a7ce601580b07e9b3e7653cbdb0a9b6bbb5c474e;hp=085da4e30d8a8b6f15e343a480d6743f733def15;hpb=57528cb98765e772cccb3067552bd29e331acdaf;p=friendica.git diff --git a/mod/share.php b/mod/share.php index 085da4e30d..928ccdef26 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,18 +1,18 @@ argc > 1) ? intval($a->argv[1]) : 0); if((! $post_id) || (! local_user())) killme(); - $r = q("SELECT item.*, contact.network FROM `item` - inner join contact on `item`.`contact-id` = `contact`.`id` + $r = q("SELECT item.*, contact.network FROM `item` + inner join contact on `item`.`contact-id` = `contact`.`id` WHERE `item`.`id` = %d AND `item`.`uid` = %d LIMIT 1", intval($post_id), intval(local_user()) ); - if(! count($r) || ($r[0]['private'] == 1)) + if(! dbm::is_result($r) || ($r[0]['private'] == 1)) killme(); if (!intval(get_config('system','old_share'))) {