Closed (fixed)
Project:
GMap Module
Version:
5.x-1.0-beta3
Component:
User interface
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Jul 2008 at 08:13 UTC
Updated:
14 Oct 2008 at 20:11 UTC
gmap_location.module
now:
function gmap_location_admin_settings() {
$form['geocoding'] = array(
'#type' => 'fieldset',
'#title' => t('Geocode Locations'),
);
$form['geocoding']['gmap_geocode'] = array(
'#type' => 'radios',
'#title' => t('Enable the Google Map API geocoding'),
'#default_value' => variable_get('gmap_geocode', 1),
'#options' => array(1 => 'Enabled', 0 => 'Disabled'),
);must:
$form['geocoding']['gmap_geocode'] = array(
'#type' => 'radios',
'#title' => t('Enable the Google Map API geocoding'),
'#default_value' => variable_get('gmap_geocode', 1),
'#options' => array(1 => t('Enabled'), 0 => t('Disabled')),
);
Comments
Comment #1
Cobalt747@drupaler.ru commentedThat same in
it need to translate.
Comment #2
bdragon commentedCommitted to gmap and location, thanks.
http://drupal.org/cvs?commit=143578
http://drupal.org/cvs?commit=143589
http://drupal.org/cvs?commit=143590
http://drupal.org/cvs?commit=143593
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.