diff options
author | friendica <info@friendica.com> | 2014-04-06 22:21:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-06 22:21:51 -0700 |
commit | 7d429b28940848cbf0cdf397ed664a594b28d994 (patch) | |
tree | 42e9b41849543edd1a267ceb9087b406511a4408 /mod | |
parent | 68296bb85789b3fcf9ed5db79b0617e94bb897e6 (diff) | |
download | volse-hubzilla-7d429b28940848cbf0cdf397ed664a594b28d994.tar.gz volse-hubzilla-7d429b28940848cbf0cdf397ed664a594b28d994.tar.bz2 volse-hubzilla-7d429b28940848cbf0cdf397ed664a594b28d994.zip |
subdue archived connections in mod/connections
Diffstat (limited to 'mod')
-rw-r--r-- | mod/connections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/connections.php b/mod/connections.php index f0879ae31..a453203ab 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -373,7 +373,7 @@ function connections_content(&$a) { 'thumb' => $rr['xchan_photo_m'], 'name' => $rr['xchan_name'], 'username' => $rr['xchan_name'], - 'sparkle' => $sparkle, + 'classes' => (($rr['abook_flags'] & ABOOK_FLAG_ARCHIVED) ? 'archived' : ''), 'link' => z_root() . '/connedit/' . $rr['abook_id'], 'url' => chanlink_url($rr['xchan_url']), 'network' => network_to_name($rr['network']), |