|
diff --git a/cgit.c b/cgit.c index 71f3fc8..916feb4 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -73,9 +73,13 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) |
73 | repo->module_link= xstrdup(value); |
73 | repo->module_link= xstrdup(value); |
74 | else if (!strcmp(name, "section")) |
74 | else if (!strcmp(name, "section")) |
75 | repo->section = xstrdup(value); |
75 | repo->section = xstrdup(value); |
76 | else if (!strcmp(name, "readme") && value != NULL) { |
76 | else if (!strcmp(name, "readme") && value != NULL) |
77 | repo->readme = xstrdup(value); |
77 | repo->readme = xstrdup(value); |
78 | } else if (ctx.cfg.enable_filter_overrides) { |
78 | else if (!strcmp(name, "logo") && value != NULL) |
| |
79 | repo->logo = xstrdup(value); |
| |
80 | else if (!strcmp(name, "logo-link") && value != NULL) |
| |
81 | repo->logo_link = xstrdup(value); |
| |
82 | else if (ctx.cfg.enable_filter_overrides) { |
79 | if (!strcmp(name, "about-filter")) |
83 | if (!strcmp(name, "about-filter")) |
80 | repo->about_filter = new_filter(value, 0); |
84 | repo->about_filter = new_filter(value, 0); |
81 | else if (!strcmp(name, "commit-filter")) |
85 | else if (!strcmp(name, "commit-filter")) |
|