all repos — cgit @ d1a6ece439e651a5b4ca535850e1c471f61c472e

a hyperfast web frontend for git written in c

ui-refs: escape HTML chars in author and tagger names

Everywhere else we use html_txt to escape any special characters in
these variables.  Do so here as well.

Signed-off-by: John Keeping <john@keeping.me.uk>
John Keeping john@keeping.me.uk
Sun, 12 Jan 2014 19:45:15 +0000
commit

d1a6ece439e651a5b4ca535850e1c471f61c472e

parent

3d8a6507ca542881a5e8b30ad6b7068a9c4fdeea

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

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

@@ -155,9 +155,9 @@ cgit_object_link(obj);

html("</td><td>"); if (info) { if (info->tagger) - html(info->tagger); + html_txt(info->tagger); } else if (ref->object->type == OBJ_COMMIT) { - html(ref->commit->author); + html_txt(ref->commit->author); } html("</td><td colspan='2'>"); if (info) {