Index: modules/location/location.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/location/location.module,v
retrieving revision 1.42.2.5
diff -u -r1.42.2.5 location.module
--- modules/location/location.module	29 Nov 2005 23:38:16 -0000	1.42.2.5
+++ modules/location/location.module	10 Jan 2006 06:15:28 -0000
@@ -623,7 +623,7 @@
     return;
   }
   
-  if ($op == 'form' && $category == 'account' && $user_setting == LOCATION_USER_COLLECT) {
+  if ((($op == 'form' && $category == 'account') || $op == 'register') && $user_setting == LOCATION_USER_COLLECT) {
     return array(t('location') => array('title' => t('Location'), 'data' => location_form(array('street', 'city', 'province', 'postal_code', 'country'), (isset($user->location) && !_location_is_empty($user->location)) ? location_api2form($user->location) : array('country' => variable_get('location_default_country', 'us')), array(), array(), t('Enter as much of your address as you are comfortable with.  Your address will only be viewable by those who have the appropriate permissions.  The site will be able to automatically link you to driving directions and other features if it already knows your address.')), 'weight' => 1));
   }
   
