Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/ui-log.c b/ui-log.c index c353b2a..725f49b 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -51,17 +51,17 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep) |
51 | if (rev.grep_filter) { |
51 | if (rev.grep_filter) { |
52 | rev.grep_filter->regflags |= REG_ICASE; |
52 | rev.grep_filter->regflags |= REG_ICASE; |
53 | compile_grep_patterns(rev.grep_filter); |
53 | compile_grep_patterns(rev.grep_filter); |
54 | } |
54 | } |
55 | prepare_revision_walk(&rev); |
55 | prepare_revision_walk(&rev); |
56 | |
56 | |
57 | html("<h2>Log</h2>"); |
57 | html("<h2>Log</h2>"); |
58 | html("<table class='list nowrap'>"); |
58 | html("<table class='list nowrap'>"); |
59 | html("<tr><th class='left'>Date</th>" |
59 | html("<tr class='nohover'><th class='left'>Date</th>" |
60 | "<th class='left'>Message</th>" |
60 | "<th class='left'>Message</th>" |
61 | "<th class='left'>Author</th></tr>\n"); |
61 | "<th class='left'>Author</th></tr>\n"); |
62 | |
62 | |
63 | if (ofs<0) |
63 | if (ofs<0) |
64 | ofs = 0; |
64 | ofs = 0; |
65 | |
65 | |
66 | for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { |
66 | for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { |
67 | free(commit->buffer); |
67 | free(commit->buffer); |
|