Mercurial > pidgin
diff libpurple/protocols/yahoo/libymsg.c @ 31901:dc3ea8f6381a
Use purple_notify_user_info_add_pair_plaintext in some places where we
were using purple_notify_user_info_add_pair (which expects an html string
for the value). Feel free to double check these if you care about one of
these protocols.
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sun, 21 Aug 2011 18:43:00 +0000 |
| parents | ce6ef84fb8a0 |
| children | fcf841ffd620 3828a61c44da |
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/libymsg.c Sun Aug 21 18:04:00 2011 +0000 +++ b/libpurple/protocols/yahoo/libymsg.c Sun Aug 21 18:43:00 2011 +0000 @@ -4037,11 +4037,11 @@ if (f && full) { YahooPersonalDetails *ypd = &f->ypd; if (ypd->phone.home && *ypd->phone.home) - purple_notify_user_info_add_pair(user_info, _("Home Phone Number"), ypd->phone.home); + purple_notify_user_info_add_pair_plaintext(user_info, _("Home Phone Number"), ypd->phone.home); if (ypd->phone.work && *ypd->phone.work) - purple_notify_user_info_add_pair(user_info, _("Work Phone Number"), ypd->phone.work); + purple_notify_user_info_add_pair_plaintext(user_info, _("Work Phone Number"), ypd->phone.work); if (ypd->phone.mobile && *ypd->phone.mobile) - purple_notify_user_info_add_pair(user_info, _("Mobile Phone Number"), ypd->phone.mobile); + purple_notify_user_info_add_pair_plaintext(user_info, _("Mobile Phone Number"), ypd->phone.mobile); } }
