diff options
author | Lars Hjemli <hjemli@gmail.com> | 2010-08-21 15:08:01 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-08-22 13:35:47 +0200 |
commit | 515edb0da3b9156e07e269621d7474cdea82acaf (patch) | |
tree | e5fed5e83f29166c23216437386e10070e1d258d /shared.c | |
parent | 6d7552bc072599313ef423d69156d824c075572a (diff) | |
download | cgit-515edb0da3b9156e07e269621d7474cdea82acaf.tar.gz cgit-515edb0da3b9156e07e269621d7474cdea82acaf.tar.bz2 cgit-515edb0da3b9156e07e269621d7474cdea82acaf.zip |
Add support for "readme" option
The value of this option is used as the default value for repo.readme.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c')
-rw-r--r-- | shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ struct cgit_repo *cgit_add_repo(const char *url) ret->enable_subject_links = ctx.cfg.enable_subject_links; ret->max_stats = ctx.cfg.max_stats; ret->module_link = ctx.cfg.module_link; - ret->readme = NULL; + ret->readme = ctx.cfg.readme; ret->mtime = -1; ret->about_filter = ctx.cfg.about_filter; ret->commit_filter = ctx.cfg.commit_filter; |