snac2

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

commit d839654ccbea5c9d9f9b01d9669a48bf6e42b56f
parent 5c8992de0c254487b95ae4e794f2ed1d94b372b2
Author: default <nobody@localhost>
Date:   Sun, 28 Jan 2024 11:18:14 +0100

Moved the favicon link out of the CSS loop.

Diffstat:
Mhtml.c | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/html.c b/html.c @@ -438,13 +438,14 @@ static xs_html *html_base_head(void) xs_html_attr("rel", "stylesheet"), xs_html_attr("type", "text/css"), xs_html_attr("href", v))); - xs_html_add(head, - xs_html_sctag("link", - xs_html_attr("rel", "icon"), - xs_html_attr("type", "image/x-icon"), - xs_html_attr("href", f))); } + xs_html_add(head, + xs_html_sctag("link", + xs_html_attr("rel", "icon"), + xs_html_attr("type", "image/x-icon"), + xs_html_attr("href", f))); + return head; }