diff --git a/boot.php b/boot.php index 4b2439d929..13ee7acdc2 100644 --- a/boot.php +++ b/boot.php @@ -139,6 +139,7 @@ define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn define ( 'NETWORK_XMPP', 'xmpp'); // XMPP define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace define ( 'NETWORK_GPLUS', 'goog'); // Google+ +define ( 'NETWORK_PUMPIO', 'pump'); // pump.io define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder @@ -161,6 +162,7 @@ $netgroup_ids = array( NETWORK_XMPP => (-10), NETWORK_MYSPACE => (-11), NETWORK_GPLUS => (-12), + NETWORK_PUMPIO => (-13), NETWORK_PHANTOM => (-127), ); diff --git a/include/contact_selectors.php b/include/contact_selectors.php index 7e2f81dffe..44ff7ab040 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -84,7 +84,8 @@ function network_to_name($s) { NETWORK_XMPP => t('XMPP/IM'), NETWORK_MYSPACE => t('MySpace'), NETWORK_MAIL2 => t('Email'), - NETWORK_GPLUS => t('Google+') + NETWORK_GPLUS => t('Google+'), + NETWORK_PUMPIO => t('pump.io') ); call_hooks('network_to_name', $nets);