aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Like.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-11-27 10:07:45 +0100
committerMario Vavti <mario@mariovavti.com>2017-11-27 10:07:45 +0100
commit1ad1b745128b7c5d7a90a825077c08f5c951c604 (patch)
tree4092f4f79611ee24a28c4703fd4727df92289221 /Zotlabs/Module/Like.php
parent0e91810ed6764fbbee54e918711bfb45a1d9fd72 (diff)
downloadvolse-hubzilla-1ad1b745128b7c5d7a90a825077c08f5c951c604.tar.gz
volse-hubzilla-1ad1b745128b7c5d7a90a825077c08f5c951c604.tar.bz2
volse-hubzilla-1ad1b745128b7c5d7a90a825077c08f5c951c604.zip
fix mod like after recent changes
Diffstat (limited to 'Zotlabs/Module/Like.php')
-rw-r--r--Zotlabs/Module/Like.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php
index 16580e60f..b07824363 100644
--- a/Zotlabs/Module/Like.php
+++ b/Zotlabs/Module/Like.php
@@ -258,7 +258,7 @@ class Like extends \Zotlabs\Web\Controller {
// get the item. Allow linked photos (which are normally hidden) to be liked
$r = q("SELECT * FROM item WHERE id = %d
- and (item_type in (0,6,7) and item_deleted = 0 and item_unpublished = 0
+ and item_type in (0,6,7) 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)
);