author | Lars Hjemli <hjemli@gmail.com> | 2009-01-29 21:21:24 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-29 21:21:24 (UTC) |
commit | d6174b7aab476c2b6a86e59d98cf978d603045f4 (patch) (side-by-side diff) | |
tree | ccc348a5887b2ca580aabfb3eca90bbd86a24386 | |
parent | a61871a18ffa9fc28e7ab0950415404350c8c857 (diff) | |
parent | 7efcef00b5aadf22f5be80ecd7b736398cf7f6b4 (diff) | |
download | cgit-d6174b7aab476c2b6a86e59d98cf978d603045f4.zip cgit-d6174b7aab476c2b6a86e59d98cf978d603045f4.tar.gz cgit-d6174b7aab476c2b6a86e59d98cf978d603045f4.tar.bz2 |
Merge branch 'stable'
-rw-r--r-- | html.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -112,14 +112,16 @@ void html_attr(char *txt) 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(">"); else if (c=='<') html("<"); else if (c=='\'') - html(""e;"); + html("'"); + else if (c=='"') + html("""); txt = t+1; } t++; |