Index: gmap.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/gmap/gmap.module,v retrieving revision 1.42 diff -u -p -r1.42 gmap.module --- gmap.module 1 Sep 2006 05:49:27 -0000 1.42 +++ gmap.module 16 Oct 2006 14:10:01 -0000 @@ -1220,10 +1220,10 @@ function theme_views_view_gmap($view, $n if (($location['lat']) && ($location['lon'])) { $marker_label = ''; foreach ($view->field as $field) { - $marker_label .= "

" . views_theme_field('views_handle_field', $field['queryname'], $fields, $field, $node) . "

"; + $marker_label .= '
'. views_theme_field('views_handle_field', $field['queryname'], $fields, $field, $node) .'
'; } $markers[] = array('markername'=>'view', - 'label' => $marker_label, + 'label' => str_replace("'","\'",$marker_label), 'point' =>$location['lat'] . ',' . $location['lon']); } }