]> git.mxchange.org Git - friendica.git/blobdiff - mod/poke.php
Merge pull request #1976 from rabuzarus/tabs-id
[friendica.git] / mod / poke.php
index 5cd88d7e2a8ee5d448a44d74d978eaa777601ce9..db1c94963618f8acbe5f84e64d8b4a2acc8d4872 100644 (file)
@@ -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),
@@ -73,7 +73,7 @@ function poke_init(&$a) {
 
        $poster = $a->contact;
 
-       $uri = item_new_uri($a->get_hostname(),$owner_uid);
+       $uri = item_new_uri($a->get_hostname(),$uid);
 
        $arr = array();
 
@@ -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'] .= '<script src="' . $a->get_baseurl(true) . '/library/jquery_ac/friendica.complete.js" ></script>';
        $a->page['htmlhead'] .= <<< EOT
 
-<script>$(document).ready(function() { 
-       var a; 
-       a = $("#poke-recip").autocomplete({ 
+<script>$(document).ready(function() {
+       var a;
+       a = $("#poke-recip").autocomplete({
                serviceUrl: '$base/acl',
                minChars: 2,
                width: 350,
                onSelect: function(value,data) {
                        $("#poke-recip-complete").val(data);
-               }                       
+               }
        });
        a.setOptions({ params: { type: 'a' }});
 
 
-}); 
+});
 
 </script>
 EOT;
@@ -203,4 +203,4 @@ EOT;
 
        return $o;
 
-}
\ No newline at end of file
+}