diff options
| author | 2024-02-16 06:23:07 +0100 | |
|---|---|---|
| committer | 2024-02-16 06:23:07 +0100 | |
| commit | e6de555f7dec18d39166deb587b7f91d927668a6 (patch) | |
| tree | e3109ae21e50c19c2084ff8c31cd753395ae7ddc | |
| parent | Fixed crash in verify_links(). (diff) | |
| download | snac2-e6de555f7dec18d39166deb587b7f91d927668a6.tar.gz snac2-e6de555f7dec18d39166deb587b7f91d927668a6.tar.xz snac2-e6de555f7dec18d39166deb587b7f91d927668a6.zip | |
Added a 'verified link' title to them.
| -rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -782,7 +782,8 @@ static xs_html *html_user_body(snac *user, int local) | |||
| 782 | char *val_date = xs_dict_get(val_links, v); | 782 | char *val_date = xs_dict_get(val_links, v); |
| 783 | 783 | ||
| 784 | if (!xs_is_null(val_date) && *val_date) { | 784 | if (!xs_is_null(val_date) && *val_date) { |
| 785 | value = xs_html_container( | 785 | value = xs_html_tag("span", |
| 786 | xs_html_attr("title", L("verified link")), | ||
| 786 | xs_html_raw("✔ "), | 787 | xs_html_raw("✔ "), |
| 787 | xs_html_tag("a", | 788 | xs_html_tag("a", |
| 788 | xs_html_attr("href", v), | 789 | xs_html_attr("href", v), |