diff options
author | Lars Hjemli | 2012-01-03 21:19:29 +0000 |
---|---|---|
committer | Lars Hjemli | 2012-01-03 21:19:29 +0000 |
commit | 1de3048d08fc6491630c45437f88f5ab03c0508f (patch) | |
tree | 3a8db575148b0d0a6f86835e5ef283f594d2feac | |
parent | Merge branch 'stable' (diff) | |
parent | Fix segmentation fault in empty repository (diff) | |
download | cgit-1de3048d08fc6491630c45437f88f5ab03c0508f.tar.gz cgit-1de3048d08fc6491630c45437f88f5ab03c0508f.zip |
Merge branch 'stable'
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 85c2096..3e9282f 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -619,7 +619,7 @@ void cgit_print_docstart(struct cgit_context *ctx) | |||
619 | html_attr(ctx->cfg.favicon); | 619 | html_attr(ctx->cfg.favicon); |
620 | html("'/>\n"); | 620 | html("'/>\n"); |
621 | } | 621 | } |
622 | if (host && ctx->repo) { | 622 | if (host && ctx->repo && ctx->qry.head) { |
623 | html("<link rel='alternate' title='Atom feed' href='"); | 623 | html("<link rel='alternate' title='Atom feed' href='"); |
624 | html(cgit_httpscheme()); | 624 | html(cgit_httpscheme()); |
625 | html_attr(cgit_hosturl()); | 625 | html_attr(cgit_hosturl()); |