-rw-r--r-- | ui-log.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -55,5 +55,5 @@ void print_commit(struct commit *commit) -void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path) +void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager) { struct rev_info rev; @@ -111,4 +111,5 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path) html("</table>\n"); + if (pager) { html("<div class='pager'>"); if (ofs > 0) { @@ -127,2 +128,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path) html("</div>"); } +} |