aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Metnetsky <mimetnet@vidu.us>2009-06-29 21:27:51 -0400
committerLars Hjemli <hjemli@gmail.com>2009-08-18 13:13:51 +0200
commit6421dc38db02eff8d3ada93e87a2f7e5292af131 (patch)
tree90828ea6f44b6d59f29b2e589a5552ba50a0aa5d
parentcgit.c: do not segfault on unexpected query-string format (diff)
downloadcgit-6421dc38db02eff8d3ada93e87a2f7e5292af131.tar.xz
cgit-6421dc38db02eff8d3ada93e87a2f7e5292af131.zip
ui-shared: don't print header <img/> if there isn't a logo defined
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-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
@@ -611,14 +611,17 @@ void cgit_print_pageheader(struct cgit_context *ctx)
html("<table id='header'>\n");
html("<tr>\n");
- html("<td class='logo' rowspan='2'><a href='");
- if (ctx->cfg.logo_link)
- html_attr(ctx->cfg.logo_link);
- else
- html_attr(cgit_rooturl());
- html("'><img src='");
- html_attr(ctx->cfg.logo);
- html("' alt='cgit logo'/></a></td>\n");
+
+ if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) {
+ html("<td class='logo' rowspan='2'><a href='");
+ if (ctx->cfg.logo_link)
+ html_attr(ctx->cfg.logo_link);
+ else
+ html_attr(cgit_rooturl());
+ html("'><img src='");
+ html_attr(ctx->cfg.logo);
+ html("' alt='cgit logo'/></a></td>\n");
+ }
html("<td class='main'>");
if (ctx->repo) {