Index: location.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/location/location.inc,v retrieving revision 1.45 diff -u -p -r1.45 location.inc --- location.inc 11 Jan 2007 11:14:52 -0000 1.45 +++ location.inc 23 Mar 2007 21:21:09 -0000 @@ -334,7 +334,6 @@ function location_form($fields = array() '#title' => t('Location name'), '#default_value' => isset($prefilled_values['name']) ? $prefilled_values['name'] : '', '#size' => 64, - '#maxlength' => 64, '#description' => t('e.g. a place of business, venue, meeting point'), '#attributes' => NULL, '#required' => in_array('name', $required_fields) @@ -348,7 +347,6 @@ function location_form($fields = array() '#title' => t('Street'), '#default_value' => isset($prefilled_values['street']) ? $prefilled_values['street'] : '', '#size' => 64, - '#maxlength' => 64, '#required' => in_array('street', $required_fields) ); $form['additional'] = array( @@ -358,7 +356,6 @@ function location_form($fields = array() '#title' => t('Additional'), '#default_value' => isset($prefilled_values['additional']) ? $prefilled_values['additional'] : '', '#size' => 64, - '#maxlength' => 64 ); } if (in_array('city', $fields)) { @@ -369,7 +366,6 @@ function location_form($fields = array() '#title' => t('City'), '#default_value' => isset($prefilled_values['city']) ? $prefilled_values['city'] : '', '#size' => 64, - '#maxlength' => 64, '#description' => NULL, '#attributes' => NULL, '#required' => in_array('city', $required_fields)