mirror of
https://git.zx2c4.com/cgit
synced 2024-11-10 02:28:41 +00:00
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>.
This commit is contained in:
parent
7ea35f9f8e
commit
fe1bb0e765
@ -361,7 +361,10 @@ void cgit_commit_link(char *name, const char *title, const char *class,
|
||||
delim = "&";
|
||||
}
|
||||
html("'>");
|
||||
html_txt(name);
|
||||
if (name[0] != '\0')
|
||||
html_txt(name);
|
||||
else
|
||||
html_txt("(no commit message)");
|
||||
html("</a>");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user