ui-shared: use placeholder for empty commit subject

Display a placeholder when creating links to commits with empty subjects.
This avoids the creation of links of the form <a></a>.
lf/filter
Christian Franke 12 years ago committed by Jason A. Donenfeld
parent 7ea35f9f8e
commit fe1bb0e765

@ -361,7 +361,10 @@ void cgit_commit_link(char *name, const char *title, const char *class,
delim = "&amp;";
}
html("'>");
html_txt(name);
if (name[0] != '\0')
html_txt(name);
else
html_txt("(no commit message)");
html("</a>");
}

Loading…
Cancel
Save