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>.
Este commit está contenido en:
Christian Franke 2012-10-28 18:36:08 +01:00 cometido por Jason A. Donenfeld
padre 7ea35f9f8e
commit fe1bb0e765
Se han modificado 1 ficheros con 4 adiciones y 1 borrados

Ver fichero

@ -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>");
}