diff options
-rw-r--r-- | save-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/save-xml.c b/save-xml.c index d5f1e158a..8366f87ff 100644 --- a/save-xml.c +++ b/save-xml.c @@ -285,7 +285,7 @@ static void save_tags(struct membuffer *b, struct tag_entry *entry) struct divetag *tag = entry->tag; put_string(b, sep); /* If the tag has been translated, write the source to the xml file */ - quote(b, tag->source ?: tag->name, 0); + quote(b, tag->source ?: tag->name, 1); sep = ", "; } while ((entry = entry->next) != NULL); put_string(b, "'"); |