# HG changeset patch # User Evan Schoenberg # Date 1211854454 0 # Node ID b24d5d112a14df0eb9fd106ec819b0d9c399e67f # Parent f34fbd06984f2722e29b99fee0ee573b62159b61 Bring oscar prpl in line with the other prpls in how it provides user info: The away message is now given an appropriate label and isn't set off in a separate section. diff -r f34fbd06984f -r b24d5d112a14 libpurple/protocols/oscar/oscar.c --- a/libpurple/protocols/oscar/oscar.c Tue May 27 02:10:35 2008 +0000 +++ b/libpurple/protocols/oscar/oscar.c Tue May 27 02:14:14 2008 +0000 @@ -3001,8 +3001,7 @@ g_free(tmp); if (away_utf8 != NULL) { tmp = purple_str_sub_away_formatters(away_utf8, purple_account_get_username(account)); - purple_notify_user_info_add_section_break(user_info); - oscar_user_info_add_pair(user_info, NULL, tmp); + oscar_user_info_add_pair(user_info, _("Away Message"), tmp); g_free(tmp); g_free(away_utf8); }