diff options
author | friendica <info@friendica.com> | 2012-01-07 13:00:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-07 13:00:06 -0800 |
commit | 358b2a46f5b48e5b95b75ed87752a87dccde8d8e (patch) | |
tree | 2b462d01b2d019ecbcba7cec0dbf03041d798c89 /include/contact_selectors.php | |
parent | 41bb47ca1b5790442e571d5eb3bbb4dd89708a03 (diff) | |
download | volse-hubzilla-358b2a46f5b48e5b95b75ed87752a87dccde8d8e.tar.gz volse-hubzilla-358b2a46f5b48e5b95b75ed87752a87dccde8d8e.tar.bz2 volse-hubzilla-358b2a46f5b48e5b95b75ed87752a87dccde8d8e.zip |
fix photo top view in testbubble, extend network_to_name
Diffstat (limited to 'include/contact_selectors.php')
-rw-r--r-- | include/contact_selectors.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/contact_selectors.php b/include/contact_selectors.php index 474902704..3211a0e58 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -74,7 +74,7 @@ function network_to_name($s) { call_hooks('network_to_name', $s); - return str_replace(array(NETWORK_DFRN,NETWORK_OSTATUS,NETWORK_FEED,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_FACEBOOK,NETWORK_ZOT), - array(t('Friendica'),t('OStatus'),t('RSS/Atom'),t('Email'),t('Diaspora'),t('Facebook'),t('Zot!')),$s); + return str_replace(array(NETWORK_DFRN,NETWORK_OSTATUS,NETWORK_FEED,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_FACEBOOK,NETWORK_ZOT,NETWORK_LINKEDIN,NETWORK_XMPP,NETWORK_MYSPACE), + array( t('Friendica'), t('OStatus'), t('RSS/Atom'), t('Email'), t('Diaspora'), t('Facebook'), t('Zot!'), t('LinkedIn'), t('XMPP/IM'), t('MySpace')),$s); } |