diff options
Diffstat (limited to 'html.c')
| -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 | } |