| -rw-r--r-- | ui-shared.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c index 0c6ca60..ce806f6 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -10,7 +10,6 @@ #include "ui-shared.h" #include "cmd.h" #include "html.h" -#include "version.h" static const char cgit_doctype[] = "<!DOCTYPE html>\n"; @@ -786,8 +785,8 @@ void cgit_print_docend(void) if (ctx.cfg.footer) html_include(ctx.cfg.footer); else { - htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> " - "(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string); + htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> at ", + cgit_version); html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601))); html("</div>\n"); } |