summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/ui-shared.c b/ui-shared.c
index de77bbf..40060ba 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -613,10 +613,13 @@ void cgit_print_pageheader(struct cgit_context *ctx)
613 html("<tr>\n"); 613 html("<tr>\n");
614 html("<td class='logo' rowspan='2'><a href='"); 614
615 if (ctx->cfg.logo_link) 615 if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) {
616 html_attr(ctx->cfg.logo_link); 616 html("<td class='logo' rowspan='2'><a href='");
617 else 617 if (ctx->cfg.logo_link)
618 html_attr(cgit_rooturl()); 618 html_attr(ctx->cfg.logo_link);
619 html("'><img src='"); 619 else
620 html_attr(ctx->cfg.logo); 620 html_attr(cgit_rooturl());
621 html("' alt='cgit logo'/></a></td>\n"); 621 html("'><img src='");
622 html_attr(ctx->cfg.logo);
623 html("' alt='cgit logo'/></a></td>\n");
624 }
622 625