diff options
author | friendica <info@friendica.com> | 2015-02-11 16:11:21 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-11 16:11:21 -0800 |
commit | c62d605608ea3cfa0430e007fe6bc7df5fa0d25f (patch) | |
tree | af12def448438ec2e706530ce300b3875f1be70b /mod | |
parent | 8c061f143f7e019fdea3a2a03d96fc4ec8e39edd (diff) | |
download | volse-hubzilla-c62d605608ea3cfa0430e007fe6bc7df5fa0d25f.tar.gz volse-hubzilla-c62d605608ea3cfa0430e007fe6bc7df5fa0d25f.tar.bz2 volse-hubzilla-c62d605608ea3cfa0430e007fe6bc7df5fa0d25f.zip |
well that was certainly fun. And the reason why likes and other acitivity deletions weren't propagating. Hopefully this is the last reason and there aren't more lurking further down the chain.
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/like.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/like.php b/mod/like.php index 79c746825..47251935a 100755 --- a/mod/like.php +++ b/mod/like.php @@ -316,7 +316,7 @@ function like_content(&$a) { // already liked it. Drop that item. require_once('include/items.php'); foreach($r as $rr) { - drop_item($rr['id'],false,DROPITEM_PHASE1); + drop_item($rr['id'],true,DROPITEM_PHASE1); } if($interactive) return; |