Default repo description to "[no description]"

Otherwise, when you leave out a description for a repository, the NULL
default causes cgit to print out titles like "cgit - (null)".

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
这个提交包含在:
Evan Martin 2007-12-02 14:39:30 -08:00 提交者 Lars Hjemli
父节点 fc4c4ba3a9
当前提交 7b346647c9

查看文件

@ -116,7 +116,7 @@ struct repoinfo *add_repo(const char *url)
ret->url = trim_end(url, '/');
ret->name = ret->url;
ret->path = NULL;
ret->desc = NULL;
ret->desc = "[no description]";
ret->owner = NULL;
ret->group = cgit_repo_group;
ret->defbranch = "master";