diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-07-25 12:04:08 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-07-25 12:04:08 +0200 |
commit | 542f6a433034935a1aa895f7ef3273968915a5d1 (patch) | |
tree | 8fc123b3d9f014f31b5b160a9456c85b6c19aa0d /cgit.c | |
parent | Merge branch 'plain-etag' (diff) | |
parent | cgitrc.5.txt: document 'head-include' (diff) | |
download | cgit-pink-542f6a433034935a1aa895f7ef3273968915a5d1.tar.gz cgit-pink-542f6a433034935a1aa895f7ef3273968915a5d1.zip |
Merge branch 'ml/head-include'
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c index ae20257..513ea12 100644 --- a/cgit.c +++ b/cgit.c @@ -31,6 +31,8 @@ void config_cb(const char *name, const char *value) ctx.cfg.favicon = xstrdup(value); else if (!strcmp(name, "footer")) ctx.cfg.footer = xstrdup(value); + else if (!strcmp(name, "head-include")) + ctx.cfg.head_include = xstrdup(value); else if (!strcmp(name, "header")) ctx.cfg.header = xstrdup(value); else if (!strcmp(name, "logo")) |