aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index e9052ff..3afa15e 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1016,7 +1016,13 @@ static void print_header(void)
1016 if (ctx.repo) { 1016 if (ctx.repo) {
1017 html_txt(ctx.repo->desc); 1017 html_txt(ctx.repo->desc);
1018 html("</td><td class='sub right'>"); 1018 html("</td><td class='sub right'>");
1019 html_txt(ctx.repo->owner); 1019 if (ctx.repo->owner_filter) {
1020 cgit_open_filter(ctx.repo->owner_filter);
1021 html_txt(ctx.repo->owner);
1022 cgit_close_filter(ctx.repo->owner_filter);
1023 } else {
1024 html_txt(ctx.repo->owner);
1025 }
1020 } else { 1026 } else {
1021 if (ctx.cfg.root_desc) 1027 if (ctx.cfg.root_desc)
1022 html_txt(ctx.cfg.root_desc); 1028 html_txt(ctx.cfg.root_desc);