]> git.mxchange.org Git - friendica-addons.git/commitdiff
Simpler form
authorMichael <heluecht@pirati.ca>
Tue, 6 Feb 2018 16:24:35 +0000 (16:24 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 6 Feb 2018 16:24:35 +0000 (16:24 +0000)
pumpio/pumpio.php

index 82d54a94bc8b9e426e07bbb08d78f0c101b180b1..8e194f85a0406ec61931a2e2fa1f22b542bbbe54 100644 (file)
@@ -867,7 +867,7 @@ function pumpio_dounlike(&$a, $uid, $self, $post, $own_id) {
                        $contactid = $orig_post['contact-id'];
        }
 
-       Item::delete(["`verb` = ? AND `uid` = ? AND `contact-id` = ? AND `thr-parent` = ?", ACTIVITY_LIKE, $uid, $contactid, $orig_post['uri']]);
+       Item::delete(['verb' => ACTIVITY_LIKE, 'uid' => $uid, 'contact-id' => $contactid, 'thr-parent' => $orig_post['uri']]);
 
        if(count($r))
                logger("pumpio_dounlike: unliked existing like. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);