ui-shared: don't print header <img/> if there isn't a logo defined

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Esse commit está contido em:
Matthew Metnetsky 2009-06-29 21:27:51 -04:00 commit de Lars Hjemli
commit 6421dc38db
1 arquivos alterados com 11 adições e 8 exclusões

Ver arquivo

@ -611,14 +611,17 @@ void cgit_print_pageheader(struct cgit_context *ctx)
html("<table id='header'>\n"); html("<table id='header'>\n");
html("<tr>\n"); html("<tr>\n");
html("<td class='logo' rowspan='2'><a href='");
if (ctx->cfg.logo_link) if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) {
html_attr(ctx->cfg.logo_link); html("<td class='logo' rowspan='2'><a href='");
else if (ctx->cfg.logo_link)
html_attr(cgit_rooturl()); html_attr(ctx->cfg.logo_link);
html("'><img src='"); else
html_attr(ctx->cfg.logo); html_attr(cgit_rooturl());
html("' alt='cgit logo'/></a></td>\n"); html("'><img src='");
html_attr(ctx->cfg.logo);
html("' alt='cgit logo'/></a></td>\n");
}
html("<td class='main'>"); html("<td class='main'>");
if (ctx->repo) { if (ctx->repo) {