CRM-15814 - Gecoder maxlength issue -> go to 12
authorKarin Gerritsen <karin@semper-it.com>
Tue, 13 Jan 2015 19:56:05 +0000 (12:56 -0700)
committerKarin Gerritsen <karin@semper-it.com>
Tue, 13 Jan 2015 19:56:05 +0000 (12:56 -0700)
Look like we can now get 12 digits from Google: for an address with long < -100 (Calgary, AB e.g). We better go to 12:
-114.2162111

CRM/Contact/Form/Edit/Address.php

index aff4eb7d354b229a652ba0f267e09f5b5bdbb939..65500055d53a3d70fb7891d7c975458c1b6f94f3 100644 (file)
@@ -128,8 +128,8 @@ class CRM_Contact_Form_Edit_Address {
       'country_id' => array(ts('Country'), $attributes['country_id'], 'country'),
       'state_province_id' => array(ts('State/Province'), $attributes['state_province_id'], NULL),
       'county_id' => array(ts('County'), $attributes['county_id'], NULL),
-      'geo_code_1' => array(ts('Latitude'), array('size' => 9, 'maxlength' => 11), NULL),
-      'geo_code_2' => array(ts('Longitude'), array('size' => 9, 'maxlength' => 11), NULL),
+      'geo_code_1' => array(ts('Latitude'), array('size' => 9, 'maxlength' => 12), NULL),
+      'geo_code_2' => array(ts('Longitude'), array('size' => 9, 'maxlength' => 12), NULL),
       'street_number' => array(ts('Street Number'), $attributes['street_number'], NULL),
       'street_name' => array(ts('Street Name'), $attributes['street_name'], NULL),
       'street_unit' => array(ts('Apt/Unit/Suite'), $attributes['street_unit'], NULL),