summaryrefslogtreecommitdiffstats
path: root/worldmap-save.c
diff options
context:
space:
mode:
Diffstat (limited to 'worldmap-save.c')
-rw-r--r--worldmap-save.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/worldmap-save.c b/worldmap-save.c
index e7448fd4e..c223ca333 100644
--- a/worldmap-save.c
+++ b/worldmap-save.c
@@ -99,7 +99,7 @@ void writeMarkers(struct membuffer *b, const bool selected_only)
put_degrees(b, dive->latitude, "temp = new google.maps.Marker({position: new google.maps.LatLng(", "");
put_degrees(b, dive->longitude, ",", ")});\n");
put_string(b, "markers.push(temp);\ntempinfowindow = new google.maps.InfoWindow({content: '<div id=\"content\">'+'<div id=\"siteNotice\">'+'</div>'+'<div id=\"bodyContent\">");
- put_format(b, "<p><b>%s</b></p>", dive->location);
+ put_format(b, "<p><b>%s</b></p>", quote(dive->location));
put_HTML_date(b, dive);
put_duration(b, dive->duration, "<p>Duration: ", " min</p>");
put_depth(b, dive->maxdepth, "<p>Max Depth: ", " m</p>");