Diffstat (limited to 'cmd.c')
| -rw-r--r-- | cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -112,7 +112,10 @@ static void snapshot_fn(struct cgit_context *ctx) static void stats_fn(struct cgit_context *ctx) { - cgit_show_stats(ctx); + if (ctx->repo->enable_stats) + cgit_show_stats(ctx); + else + cgit_print_error("Stats disabled for this repo"); } static void summary_fn(struct cgit_context *ctx) |