aboutsummaryrefslogtreecommitdiffstats
path: root/include/ItemObject.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-20 19:51:58 -0700
committerfriendica <info@friendica.com>2013-08-20 19:51:58 -0700
commit02a36948685737afdbbb9a292a338b304bb5cc04 (patch)
tree60782bb707ae774b9c3e19f4208abeacb5fbda4d /include/ItemObject.php
parentcd5fdbcb48a2e05198bb9daaf0753e8218ea4285 (diff)
downloadvolse-hubzilla-02a36948685737afdbbb9a292a338b304bb5cc04.tar.gz
volse-hubzilla-02a36948685737afdbbb9a292a338b304bb5cc04.tar.bz2
volse-hubzilla-02a36948685737afdbbb9a292a338b304bb5cc04.zip
fix superblock for comments
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r--include/ItemObject.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php
index 8c8c0ee2a..22b191e79 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -39,10 +39,10 @@ class Item extends BaseObject {
foreach($data['children'] as $item) {
/*
- * Only add thos that will be displayed
+ * Only add those that will be displayed
*/
- if(! visible_activity($item)) {
+ if((! visible_activity($item)) || array_key_exists('author_blocked',$item)) {
continue;
}