diff options
| author | 2024-06-15 04:31:56 +0200 | |
|---|---|---|
| committer | 2024-06-15 04:31:56 +0200 | |
| commit | d7f2a91161cf128b7b3363d9971decb491852618 (patch) | |
| tree | 47a0b14f1a2d17a7b353a7ecf621f6617d8bbae5 | |
| parent | All metadata links include the rel='me' attribute. (diff) | |
| download | snac2-d7f2a91161cf128b7b3363d9971decb491852618.tar.gz snac2-d7f2a91161cf128b7b3363d9971decb491852618.tar.xz snac2-d7f2a91161cf128b7b3363d9971decb491852618.zip | |
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) | |||
| 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 | } |