diff options
| -rw-r--r-- | html.c | 8 |
1 files changed, 6 insertions, 2 deletions
| @@ -2662,7 +2662,9 @@ xs_str *html_notifications(snac *user, int skip, int show) | |||
| 2662 | xs_html_text(L("New")))); | 2662 | xs_html_text(L("New")))); |
| 2663 | 2663 | ||
| 2664 | xs_html_add(body, | 2664 | xs_html_add(body, |
| 2665 | noti_new); | 2665 | xs_html_tag("div", |
| 2666 | xs_html_attr("class", "snac-posts"), | ||
| 2667 | noti_new)); | ||
| 2666 | } | 2668 | } |
| 2667 | 2669 | ||
| 2668 | xs_html_add(noti_new, | 2670 | xs_html_add(noti_new, |
| @@ -2677,7 +2679,9 @@ xs_str *html_notifications(snac *user, int skip, int show) | |||
| 2677 | xs_html_text(L("Already seen")))); | 2679 | xs_html_text(L("Already seen")))); |
| 2678 | 2680 | ||
| 2679 | xs_html_add(body, | 2681 | xs_html_add(body, |
| 2680 | noti_seen); | 2682 | xs_html_tag("div", |
| 2683 | xs_html_attr("class", "snac-posts"), | ||
| 2684 | noti_seen)); | ||
| 2681 | } | 2685 | } |
| 2682 | 2686 | ||
| 2683 | xs_html_add(noti_seen, | 2687 | xs_html_add(noti_seen, |