# HG changeset patch # User Paul Miller # Date 1043950084 0 # Node ID ee927fea59c2617dc0d9f75ce0f0cba9c61d0262 # Parent 4c2abef133ebaa14894b729e154a14e0c285c62a [gaim-migrate @ 4748] Paul Miller writes: "Small patch for the strip_html() function (in html.c) to replace " with a quote. " committer: Luke Schierer diff -r 4c2abef133eb -r ee927fea59c2 src/html.c --- a/src/html.c Thu Jan 30 15:15:15 2003 +0000 +++ b/src/html.c Thu Jan 30 18:08:04 2003 +0000 @@ -68,6 +68,11 @@ visible = 1; continue; } + if (text2[i] == '&' && strncasecmp(text2+i,""",6) == 0) { + text2[j++] = '\"'; + i = i+5; + continue; + } if (visible) { text2[j++] = text2[i]; }