diff options
author | redmatrix <git@macgirvin.com> | 2016-03-04 14:38:14 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-04 14:38:14 -0800 |
commit | 9a0f0181a5c103476ad8617c2d71983f2f71da1b (patch) | |
tree | f6e7ea45b98532596aa04c6ec3ca2608aede423c /mod/like.php | |
parent | a59d1b22f6ab1bf5b3cf5df555d71b893c05540a (diff) | |
download | volse-hubzilla-9a0f0181a5c103476ad8617c2d71983f2f71da1b.tar.gz volse-hubzilla-9a0f0181a5c103476ad8617c2d71983f2f71da1b.tar.bz2 volse-hubzilla-9a0f0181a5c103476ad8617c2d71983f2f71da1b.zip |
issues #306 and #307
Diffstat (limited to 'mod/like.php')
-rwxr-xr-x | mod/like.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/mod/like.php b/mod/like.php index 26c39bf3b..1de7882e9 100755 --- a/mod/like.php +++ b/mod/like.php @@ -299,7 +299,8 @@ function like_content(&$a) { $verbs = " '".dbesc($activity)."' "; - $multi_undo = 0; + + $multi_undo = false; // event participation and consensus items are essentially radio toggles. If you make a subsequent choice, // we need to eradicate your first choice. @@ -310,15 +311,14 @@ function like_content(&$a) { } if($activity === ACTIVITY_AGREE || $activity === ACTIVITY_DISAGREE || $activity === ACTIVITY_ABSTAIN) { $verbs = " '" . dbesc(ACTIVITY_AGREE) . "','" . dbesc(ACTIVITY_DISAGREE) . "','" . dbesc(ACTIVITY_ABSTAIN) . "' "; - $multi_undo = 1; + $multi_undo = true; } $item_normal = item_normal(); $r = q("SELECT id, parent, uid, verb FROM item WHERE verb in ( $verbs ) $item_normal - AND author_xchan = '%s' AND ( parent = %d OR thr_parent = '%s') and uid = %d ", + AND author_xchan = '%s' AND thr_parent = '%s' and uid = %d ", dbesc($observer['xchan_hash']), - intval($item_id), dbesc($item['mid']), intval($owner_uid) ); @@ -338,6 +338,12 @@ function like_content(&$a) { // don't fall through and create another if(activity_match($rr['verb'],$activity)) $multi_undo = false; + + // drop_item was not done interactively, so we need to invoke the notifier + // in order to push the changes to connections + + proc_run('php','include/notifier.php','drop',$rr['id']); + } if($interactive) |