# HG changeset patch # User Luke Schierer # Date 1043950084 0 # Node ID 7b0f6537da758a08543ee1eb0241d2103dad5e30 # Parent e73c4e8e2d031ac82ecacbed93ed2fc4a5e929a7 [gaim-migrate @ 4748] Paul Miller writes: "Small patch for the strip_html() function (in html.c) to replace " with a quote. " committer: Tailor Script diff -r e73c4e8e2d03 -r 7b0f6537da75 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]; }