diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2009-08-18 13:14:11 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-18 13:14:11 +0200 | 
| commit | 73b54f7d7e21fbb15c50e21eafe1737df96b2073 (patch) | |
| tree | 50b27e54f940e4a3c645e48a73431d4014e18eed /ui-shared.c | |
| parent | Merge branch 'stable' (diff) | |
| parent | ui-shared: don't print header <img/> if there isn't a logo defined (diff) | |
| download | cgit-73b54f7d7e21fbb15c50e21eafe1737df96b2073.tar.gz cgit-73b54f7d7e21fbb15c50e21eafe1737df96b2073.tar.bz2 cgit-73b54f7d7e21fbb15c50e21eafe1737df96b2073.zip | |
Merge branch 'stable'
Diffstat (limited to '')
| -rw-r--r-- | ui-shared.c | 19 | 
1 files changed, 11 insertions, 8 deletions
| diff --git a/ui-shared.c b/ui-shared.c index cf06511..07d5dd4 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -630,14 +630,17 @@ static void print_header(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) { | 
