Index: location.admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/location/location.admin.inc,v retrieving revision 1.17.2.6 diff -u -r1.17.2.6 location.admin.inc --- location.admin.inc 27 May 2010 14:48:13 -0000 1.17.2.6 +++ location.admin.inc 28 May 2010 10:35:58 -0000 @@ -289,7 +289,7 @@ variable_set('location_general_geocoders_in_use', $general_geocoders_in_use); } -function theme_location_map_link_options(&$form) { +function theme_location_map_link_options($form) { $header = array(array('align' => 'center', 'data' => '
'. t('Country') .'
'), array('align' => 'center', 'data' => '
'. t('Options') .'
')); $rows = array(); foreach (element_children($form['countries']) as $country_iso) { @@ -310,7 +310,7 @@ return $output; } -function theme_location_geocoding_options(&$form) { +function theme_location_geocoding_options($form) { $output = drupal_render($form['location_geocode_google_minimum_accuracy']); $header = array( array('align' => 'center', 'data' => '
'. t('Country') .'
'),