Mercurial > pidgin
changeset 7519:c57206d8753f
[gaim-migrate @ 8132]
Strip CRs in userinfo
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Sun, 16 Nov 2003 01:45:18 +0000 |
parents | 3177568fc346 |
children | f25119847c5b |
files | src/account.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/account.c Sat Nov 15 17:50:31 2003 +0000 +++ b/src/account.c Sun Nov 16 01:45:18 2003 +0000 @@ -1297,6 +1297,7 @@ if ((user_info = gaim_account_get_user_info(account)) != NULL) { esc = g_markup_escape_text(user_info, -1); + gaim_str_strip_cr(esc); fprintf(fp, " <userinfo>%s</userinfo>\n", esc); g_free(esc); }