logic was reversed - should work now

This commit is contained in:
friendica 2012-07-31 22:25:03 -07:00
parent 14282a40bb
commit 70389c99ea
1 changed files with 1 additions and 4 deletions

View File

@ -52,7 +52,7 @@ function poke_init(&$a) {
intval($parent),
intval($uid)
);
if(! count($r)) {
if(count($r)) {
$parent_uri = $r[0]['uri'];
$private = $r[0]['private'];
$allow_cid = $r[0]['allow_cid'];
@ -71,9 +71,6 @@ function poke_init(&$a) {
$deny_gid = (($private) ? '' : $a->user['deny_gid']);
}
$poster = $a->contact;
$uri = item_new_uri($a->get_hostname(),$owner_uid);