diff options
Diffstat (limited to 'ui-stats.c')
-rw-r--r-- | ui-stats.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -154,6 +154,14 @@ int cgit_find_stats_period(const char *expr, struct cgit_period **period) | |||
154 | return 0; | 154 | return 0; |
155 | } | 155 | } |
156 | 156 | ||
157 | const char *cgit_find_stats_periodname(int idx) | ||
158 | { | ||
159 | if (idx > 0 && idx < 4) | ||
160 | return periods[idx - 1].name; | ||
161 | else | ||
162 | return ""; | ||
163 | } | ||
164 | |||
157 | static void add_commit(struct string_list *authors, struct commit *commit, | 165 | static void add_commit(struct string_list *authors, struct commit *commit, |
158 | struct cgit_period *period) | 166 | struct cgit_period *period) |
159 | { | 167 | { |