Diffstat (limited to 'ui-repolist.c')
| -rw-r--r-- | ui-repolist.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 2ab6e9e..47ca997 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -332,13 +332,9 @@ void cgit_print_site_readme() { if (!ctx.cfg.root_readme) return; - if (ctx.cfg.about_filter) { - ctx.cfg.about_filter->argv[1] = ctx.cfg.root_readme; + if (ctx.cfg.about_filter) cgit_open_filter(ctx.cfg.about_filter); - } html_include(ctx.cfg.root_readme); - if (ctx.cfg.about_filter) { + if (ctx.cfg.about_filter) cgit_close_filter(ctx.cfg.about_filter); - ctx.cfg.about_filter->argv[1] = NULL; - } } |