summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-shared.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index cf06511..07d5dd4 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -630,6 +630,8 @@ static void print_header(struct cgit_context *ctx)
630{ 630{
631 html("<table id='header'>\n"); 631 html("<table id='header'>\n");
632 html("<tr>\n"); 632 html("<tr>\n");
633
634 if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) {
633 html("<td class='logo' rowspan='2'><a href='"); 635 html("<td class='logo' rowspan='2'><a href='");
634 if (ctx->cfg.logo_link) 636 if (ctx->cfg.logo_link)
635 html_attr(ctx->cfg.logo_link); 637 html_attr(ctx->cfg.logo_link);
@@ -638,6 +640,7 @@ static void print_header(struct cgit_context *ctx)
638 html("'><img src='"); 640 html("'><img src='");
639 html_attr(ctx->cfg.logo); 641 html_attr(ctx->cfg.logo);
640 html("' alt='cgit logo'/></a></td>\n"); 642 html("' alt='cgit logo'/></a></td>\n");
643 }
641 644
642 html("<td class='main'>"); 645 html("<td class='main'>");
643 if (ctx->repo) { 646 if (ctx->repo) {