snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit d7f2a91161cf128b7b3363d9971decb491852618
parent 9145c2246994265fe52f9dc3e2fe190f1bb9a522
Author: default <nobody@localhost>
Date:   Sat, 15 Jun 2024 04:31:56 +0200

Minor tweak to rel=me links.

Diffstat:
Mhtml.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/html.c b/html.c @@ -854,14 +854,14 @@ static xs_html *html_user_body(snac *user, int read_only) xs_html_attr("title", verified_link), xs_html_raw("&#10004; "), 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)); } }