diff options
author | friendica <info@friendica.com> | 2013-05-23 16:51:08 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-23 16:51:08 -0700 |
commit | bb31e6bd6a7ad9c24d3537719a656c86de0e0ee5 (patch) | |
tree | 3490597f332f5dad9644d652c8ac0e0ad9f675ec /mod/connections.php | |
parent | a96d2177f7129bb9518ae44759868d4e39d7bc4a (diff) | |
download | volse-hubzilla-bb31e6bd6a7ad9c24d3537719a656c86de0e0ee5.tar.gz volse-hubzilla-bb31e6bd6a7ad9c24d3537719a656c86de0e0ee5.tar.bz2 volse-hubzilla-bb31e6bd6a7ad9c24d3537719a656c86de0e0ee5.zip |
make 90 the default closeness when humans are involved in the process
Diffstat (limited to 'mod/connections.php')
-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 a54f77b1f..4858f75ea 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -332,7 +332,7 @@ function connections_content(&$a) { $slider_tpl = get_markup_template('contact_slider.tpl'); $slide = replace_macros($slider_tpl,array( '$me' => t('Me'), - '$val' => $contact['abook_closeness'], + '$val' => (($contact['abook_closeness']) ? $contact['abook_closeness'] : 90), '$intimate' => t('Best Friends'), '$friends' => t('Friends'), '$oldfriends' => t('Former Friends'), |