summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar default2025-02-14 08:59:04 +0100
committerGravatar default2025-02-14 08:59:04 +0100
commitfa9a6abf6095b8a0721cfba58d4d825e9d61a339 (patch)
tree62d6000503edc93bdcd75086885ca52a07a5ea9c /html.c
parentDisable "shortnames" of the image/svg+xml mediaType. (diff)
parentNew Makefile target. (diff)
downloadsnac2-fa9a6abf6095b8a0721cfba58d4d825e9d61a339.tar.gz
snac2-fa9a6abf6095b8a0721cfba58d4d825e9d61a339.tar.xz
snac2-fa9a6abf6095b8a0721cfba58d4d825e9d61a339.zip
Merge branch 'master' of comam.es:git/snac2
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index e45b0b2..42b9b48 100644
--- a/html.c
+++ b/html.c
@@ -1058,8 +1058,8 @@ static xs_html *html_user_body(snac *user, int read_only)
1058 const char *longitude = xs_dict_get_def(user->config, "longitude", ""); 1058 const char *longitude = xs_dict_get_def(user->config, "longitude", "");
1059 1059
1060 if (*latitude && *longitude) { 1060 if (*latitude && *longitude) {
1061 xs *label = xs_fmt(L("%s,%s"), latitude, longitude); 1061 xs *label = xs_fmt("%s,%s", latitude, longitude);
1062 xs *url = xs_fmt(L("https://openstreetmap.org/search?query=%s,%s"), 1062 xs *url = xs_fmt("https://openstreetmap.org/search?query=%s,%s",
1063 latitude, longitude); 1063 latitude, longitude);
1064 1064
1065 xs_html_add(top_user, 1065 xs_html_add(top_user,