From mboxrd@z Thu Jan 1 00:00:00 1970 From: plenz at cis.fu-berlin.de (Julius Plenz) Date: Tue, 16 Apr 2013 16:11:25 +0200 Subject: [PATCH] RFC: Hide owner value in repo overwiev Message-ID: <1366121485-970183-1-git-send-email-plenz@cis.fu-berlin.de> This is not strictly the stated purpose of the setting "enable-index-owner", but chances are that if you don't want to display this information in the index you don't want to display it in the header, either. Signed-off-by: Julius Plenz --- ui-shared.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-shared.c b/ui-shared.c index 519eef7..af0b6f8 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -830,7 +830,8 @@ static void print_header(struct cgit_context *ctx) if (ctx->repo) { html_txt(ctx->repo->desc); html(""); - html_txt(ctx->repo->owner); + if(ctx->cfg.enable_index_owner) + html_txt(ctx->repo->owner); } else { if (ctx->cfg.root_desc) html_txt(ctx->cfg.root_desc); -- 1.8.2.1-zedat