diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-24 18:15:19 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-24 18:15:19 -0700 |
commit | 341386a95ba68227f60964ab50f9b20989ac6802 (patch) | |
tree | e6dcc16a6bc80edd3a7970e596fecbe7cd82d938 /include/items.php | |
parent | bd84a3ee08ecbf028af5b3ea672062abc93ab3e1 (diff) | |
download | volse-hubzilla-341386a95ba68227f60964ab50f9b20989ac6802.tar.gz volse-hubzilla-341386a95ba68227f60964ab50f9b20989ac6802.tar.bz2 volse-hubzilla-341386a95ba68227f60964ab50f9b20989ac6802.zip |
make cards searchable
Diffstat (limited to 'include/items.php')
-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 070c4571a..8489ec162 100755 --- a/include/items.php +++ b/include/items.php @@ -177,7 +177,7 @@ function item_normal() { } function item_normal_search() { - return " and item.item_hidden = 0 and item.item_type in (0,3) and item.item_deleted = 0 + return " and item.item_hidden = 0 and item.item_type in (0,3,6) 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 "; } |