Index: location.admin.inc =================================================================== --- location.admin.inc (revision 1583) +++ location.admin.inc (working copy) @@ -64,6 +64,16 @@ function _location_admin_settings() { '#description' => t('If you are going to be importing locations in bulk directly into the database, you may wish to enable JIT geocoding and load the locations with source set to 4 (LOCATION_LATLON_JIT_GEOCODING). The system will automatically geocode locations as they are loaded.'), ); + $form['location_province_autocomplete'] = array( + '#type' => 'radios', + '#title' => t('Province Autocomplete Setting'), + '#default_value' => variable_get('location_province_autocomplete', 0), + '#options' => array( + 0 => t('Return full province names.'), + 1 => t('Return province codes.') + ), + '#description' => t('Select whether you want the autocomplete field to return the full province name or the province code.') + ); return system_settings_form($form); }