X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fpoke.php;h=db1c94963618f8acbe5f84e64d8b4a2acc8d4872;hb=26983bafff024adab0339b828ec21d83fc5d1007;hp=edcb27d021f86a721631acf50a4d71971520fb9b;hpb=386b6d081b41850908adf7b5670db41a344170e6;p=friendica.git diff --git a/mod/poke.php b/mod/poke.php index edcb27d021..db1c949636 100644 --- a/mod/poke.php +++ b/mod/poke.php @@ -12,8 +12,8 @@ function poke_init(&$a) { $uid = local_user(); $verb = notags(trim($_GET['verb'])); - - if(! $verb) + + if(! $verb) return; $verbs = get_poke_verbs(); @@ -46,7 +46,7 @@ function poke_init(&$a) { $target = $r[0]; if($parent) { - $r = q("select uri, private, allow_cid, allow_gid, deny_cid, deny_gid + $r = q("select uri, private, allow_cid, allow_gid, deny_cid, deny_gid from item where id = %d and parent = %d and uid = %d limit 1", intval($parent), intval($parent), @@ -111,11 +111,11 @@ function poke_init(&$a) { $item_id = item_store($arr); if($item_id) { - q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", - dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id), - intval($uid), - intval($item_id) - ); + //q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d", + // dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id), + // intval($uid), + // intval($item_id) + //); proc_run('php',"include/notifier.php","tag","$item_id"); } @@ -156,20 +156,20 @@ function poke_content(&$a) { $a->page['htmlhead'] .= ''; $a->page['htmlhead'] .= <<< EOT - EOT; @@ -203,4 +203,4 @@ EOT; return $o; -} \ No newline at end of file +}