fix filling
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-10 00:10:55 +09:00
commit d17e7b9b7c
Signed by: nishi
GPG key ID: 27EF69B208EB9343

View file

@ -224,6 +224,7 @@ void classic_body(FILE* out, const char* top, const char* title, xl_node_t* body
size[0] = 0;
ws = 0;
if(u_image_size(top, text, u_http_path, &ws, &hs)) {
sprintf(size, " width=\"%d\" height=\"%d\"", ws, hs);
}
@ -231,6 +232,7 @@ void classic_body(FILE* out, const char* top, const char* title, xl_node_t* body
text = u_path(top, text);
fprintf(out, " <a href=\"%s\"><img src=\"%s\" alt=\"%s\" border=\"0\"%s></a>\n", link, text, name, size);
fprintf(out, " <img src=\"%simage/fill.gif\" width=\"96\">\n", top);
free(text);
}