all repos — cgit @ d6174b7aab476c2b6a86e59d98cf978d603045f4

a hyperfast web frontend for git written in c

Merge branch 'stable'
Lars Hjemli hjemli@gmail.com
Thu, 29 Jan 2009 22:21:24 +0100
commit

d6174b7aab476c2b6a86e59d98cf978d603045f4

parent

a61871a18ffa9fc28e7ab0950415404350c8c857

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

jump to
M html.chtml.c

@@ -112,14 +112,16 @@ {

char *t = txt; while(t && *t){ int c = *t; - if (c=='<' || c=='>' || c=='\'') { + if (c=='<' || c=='>' || c=='\'' || c=='\"') { write(htmlfd, txt, t - txt); if (c=='>') html("&gt;"); else if (c=='<') html("&lt;"); else if (c=='\'') - html("&quote;"); + html("&#x27;"); + else if (c=='"') + html("&quot;"); txt = t+1; } t++;