diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-09 23:44:24 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-09 23:44:24 -0700 |
commit | 1650ac2edd28b2007188a9e0c43ebab68b1660ee (patch) | |
tree | fd121f03f169f40c3349d12abcf50f8a89386cb7 /include | |
parent | bb1aa04689ee02682482280baafb233e0b0665ed (diff) | |
download | volse-hubzilla-1650ac2edd28b2007188a9e0c43ebab68b1660ee.tar.gz volse-hubzilla-1650ac2edd28b2007188a9e0c43ebab68b1660ee.tar.bz2 volse-hubzilla-1650ac2edd28b2007188a9e0c43ebab68b1660ee.zip |
tag search not finding articles
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 9d6e53c1e..d7cf9c558 100755 --- a/include/items.php +++ b/include/items.php @@ -178,7 +178,7 @@ function item_normal() { } function item_normal_search() { - return " and item.item_hidden = 0 and item.item_type in (0,3,6) and item.item_deleted = 0 + return " and item.item_hidden = 0 and item.item_type in (0,3,6,7) and item.item_deleted = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_pending_remove = 0 and item.item_blocked = 0 and item.obj_type != '" . ACTIVITY_OBJ_FILE . "' "; } |