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 <[email protected]>
---
 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("</td><td class='sub right'>");
-               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


_______________________________________________
cgit mailing list
[email protected]
http://hjemli.net/mailman/listinfo/cgit

Reply via email to