summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2024-06-15 04:31:56 +0200
committerGravatar default2024-06-15 04:31:56 +0200
commitd7f2a91161cf128b7b3363d9971decb491852618 (patch)
tree47a0b14f1a2d17a7b353a7ecf621f6617d8bbae5
parentAll metadata links include the rel='me' attribute. (diff)
downloadsnac2-d7f2a91161cf128b7b3363d9971decb491852618.tar.gz
snac2-d7f2a91161cf128b7b3363d9971decb491852618.tar.xz
snac2-d7f2a91161cf128b7b3363d9971decb491852618.zip
Minor tweak to rel=me links.
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 48db522..44b5433 100644
--- a/html.c
+++ b/html.c
@@ -854,14 +854,14 @@ static xs_html *html_user_body(snac *user, int read_only)
854 xs_html_attr("title", verified_link), 854 xs_html_attr("title", verified_link),
855 xs_html_raw("✔ "), 855 xs_html_raw("✔ "),
856 xs_html_tag("a", 856 xs_html_tag("a",
857 xs_html_attr("href", v),
858 xs_html_attr("rel", "me"), 857 xs_html_attr("rel", "me"),
858 xs_html_attr("href", v),
859 xs_html_text(v))); 859 xs_html_text(v)));
860 } 860 }
861 else { 861 else {
862 value = xs_html_tag("a", 862 value = xs_html_tag("a",
863 xs_html_attr("href", v),
864 xs_html_attr("rel", "me"), 863 xs_html_attr("rel", "me"),
864 xs_html_attr("href", v),
865 xs_html_text(v)); 865 xs_html_text(v));
866 } 866 }
867 } 867 }