Index: follow.api.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/follow/follow.api.php,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 follow.api.php
--- follow.api.php	13 May 2010 17:27:36 -0000	1.1.2.2
+++ follow.api.php	21 Oct 2010 23:15:32 -0000
@@ -12,14 +12,14 @@
  */
 function hook_follow_networks_alter(&$networks, $uid = 0) {
   // Add a network.
-  $networks['mailinglist'] = array(
+  $networks[$uid]['mailinglist'] = array(
     'title' => t('Mailing List'),
     'domain' => '',
   );
 
   // Replace Twitter with Identi.ca
-  unset($networks['twitter']);
-  $networks['identica'] = array(
+  unset($networks[$uid]['twitter']);
+  $networks[$uid]['identica'] = array(
     'title' => t('Identi.ca'),
     'domain' => 'identi.ca',
   );
