all repos — cgit @ fe1bb0e765883fa4149fba12daee81b6ae070de3

a hyperfast web frontend for git written in c

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>.
Christian Franke nobody@nowhere.ws
Sun, 28 Oct 2012 18:36:08 +0100
commit

fe1bb0e765883fa4149fba12daee81b6ae070de3

parent

7ea35f9f8ecf61ab42be9947aae1176ab6e089bd

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M ui-shared.cui-shared.c

@@ -361,7 +361,10 @@ html("ignorews=1");

delim = "&amp;"; } html("'>"); - html_txt(name); + if (name[0] != '\0') + html_txt(name); + else + html_txt("(no commit message)"); html("</a>"); }