diff options
author | June McEnroe <june@causal.agency> | 2021-02-04 17:10:14 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-02-04 17:10:55 -0500 |
commit | 7d56da628a55245403584d8f6c63af9c6ebbc6d5 (patch) | |
tree | 9fcaedd227f78f6c75960aebe28c6899f0f7b470 /www/git.causal.agency | |
parent | Warn twice about stopped jobs (diff) | |
download | src-7d56da628a55245403584d8f6c63af9c6ebbc6d5.tar.gz src-7d56da628a55245403584d8f6c63af9c6ebbc6d5.zip |
Use owner-filter for repo page headers
Previously it was only used if owners were displayed on the index.
Diffstat (limited to '')
-rw-r--r-- | www/git.causal.agency/cgit/ui-shared.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/git.causal.agency/cgit/ui-shared.c b/www/git.causal.agency/cgit/ui-shared.c index 61401b54..d02b6c85 100644 --- a/www/git.causal.agency/cgit/ui-shared.c +++ b/www/git.causal.agency/cgit/ui-shared.c @@ -1027,7 +1027,13 @@ static void print_header(void) if (ctx.repo) { html_txt(ctx.repo->desc); html("</td><td class='sub right'>"); - html_txt(ctx.repo->owner); + if (ctx.repo->owner_filter) { + cgit_open_filter(ctx.repo->owner_filter); + html_txt(ctx.repo->owner); + cgit_close_filter(ctx.repo->owner_filter); + } else { + html_txt(ctx.repo->owner); + } } else { if (ctx.cfg.root_desc) html_txt(ctx.cfg.root_desc); |