diff options
author | friendica <info@friendica.com> | 2014-09-01 16:32:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-01 16:32:35 -0700 |
commit | a2146021f3218ae66d32d6a28f3a79a2d1cee6ac (patch) | |
tree | 7abeecbae30a8826d70fb5ae3bcdc2fc6946084a /include/Contact.php | |
parent | 46d96eff14c9d63fee2d0eff156050522b215ff7 (diff) | |
download | volse-hubzilla-a2146021f3218ae66d32d6a28f3a79a2d1cee6ac.tar.gz volse-hubzilla-a2146021f3218ae66d32d6a28f3a79a2d1cee6ac.tar.bz2 volse-hubzilla-a2146021f3218ae66d32d6a28f3a79a2d1cee6ac.zip |
use feed icon as default avatar for rss connections
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index 66c94ef50..a9e737bde 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -323,7 +323,7 @@ function mark_orphan_hubsxchans() { return; $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d) - and hubloc_connected < utc_timestamp() - interval 36 day", + and hubloc_network != 'zot' and hubloc_connected < utc_timestamp() - interval 36 day", intval(HUBLOC_OFFLINE), intval(HUBLOC_OFFLINE) ); |