diff options
author | default <nobody@localhost> | 2024-06-15 04:31:56 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-06-15 04:31:56 +0200 |
commit | d7f2a91161cf128b7b3363d9971decb491852618 (patch) | |
tree | 47a0b14f1a2d17a7b353a7ecf621f6617d8bbae5 | |
parent | 9145c2246994265fe52f9dc3e2fe190f1bb9a522 (diff) |
Minor tweak to rel=me links.
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -854,14 +854,14 @@ static xs_html *html_user_body(snac *user, int read_only) xs_html_attr("title", verified_link), xs_html_raw("✔ "), xs_html_tag("a", - xs_html_attr("href", v), xs_html_attr("rel", "me"), + xs_html_attr("href", v), xs_html_text(v))); } else { value = xs_html_tag("a", - xs_html_attr("href", v), xs_html_attr("rel", "me"), + xs_html_attr("href", v), xs_html_text(v)); } } |