Index: views_handler_field_geo.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/geo/includes/views/views_handler_field_geo.inc,v
retrieving revision 1.5
diff -u -p -r1.5 views_handler_field_geo.inc
--- views_handler_field_geo.inc	9 Dec 2009 17:34:02 -0000	1.5
+++ views_handler_field_geo.inc	23 Dec 2009 23:59:05 -0000
@@ -42,11 +42,9 @@ class views_handler_field_geo extends vi
     // For now, we fetch the result as text data.
     $function = $this->options['function'];
     if (!$function) return;
-
-    $this->field_alias .= '_'. strtolower($function);
-
+        
     // Add the field, using the Geo API method for getting it.
     $field = $this->geo->$function($this->geo);
-    $this->query->add_field(NULL, $field, $this->field_alias);
+    $this->field_alias = $this->query->add_field(NULL, $field, $this->real_field .'_'. strtolower($function));
   }
 }