aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-07-17 22:45:35 +0200
committerMario Vavti <mario@mariovavti.com>2015-07-17 22:45:35 +0200
commit09f6337930a5686f91dd174fd22356966d4e584a (patch)
tree1577461bbb2dad5688327666d1f35854c373c75e /mod
parent4299ae65a4ec406bbd932e0948197c5127a57b3b (diff)
downloadvolse-hubzilla-09f6337930a5686f91dd174fd22356966d4e584a.tar.gz
volse-hubzilla-09f6337930a5686f91dd174fd22356966d4e584a.tar.bz2
volse-hubzilla-09f6337930a5686f91dd174fd22356966d4e584a.zip
make likes/dislikes work again
Diffstat (limited to 'mod')
-rwxr-xr-xmod/like.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/like.php b/mod/like.php
index ffd302efa..9077adbda 100755
--- a/mod/like.php
+++ b/mod/like.php
@@ -242,8 +242,8 @@ function like_content(&$a) {
// get the item. Allow linked photos (which are normally hidden) to be liked
$r = q("SELECT * FROM item WHERE id = %d
- and item_blocked = 0 and item_moderated = 0 and item_spam = 0
- and item_deleted = 0 and item_unpublished = 0 and item_delayed_publish = 0 LIMIT 1",
+ and item_type = 0 and item_deleted = 0 and item_unpublished = 0
+ and item_delayed = 0 and item_pending_remove = 0 and item_blocked = 0 LIMIT 1",
intval($item_id)
);