aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui-shared.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index d9d5da7..75b97a1 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -361,7 +361,10 @@ void cgit_commit_link(char *name, const char *title, const char *class,
361 delim = "&"; 361 delim = "&";
362 } 362 }
363 html("'>"); 363 html("'>");
364 html_txt(name); 364 if (name[0] != '\0')
365 html_txt(name);
366 else
367 html_txt("(no commit message)");
365 html("</a>"); 368 html("</a>");
366} 369}
367 370