# HG changeset patch # User Eric Warmenhoven # Date 1006822441 0 # Node ID ccb5b2f05d16e0f5a99443085335e866c50f4133 # Parent e8d26a18be9421e01ab4f5636179ecb67f5fac47 [gaim-migrate @ 2810] (16:50:36) LSchiere: warmenhoven: did something happen to the %n substitution in away messages in today's cvs? (16:51:20) warmenhoven: oh, probably. committer: Tailor Script diff -r e8d26a18be94 -r ccb5b2f05d16 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Mon Nov 26 23:20:40 2001 +0000 +++ b/src/protocols/oscar/oscar.c Tue Nov 27 00:54:01 2001 +0000 @@ -1619,19 +1619,20 @@ if (evilhack) { g_show_info_text(gc, info->sn, 2, header, - (prof && *prof) ? prof : + (prof && *prof) ? away_subs(prof, gc->username) : _("User has no away message"), legend, NULL); } else { g_show_info_text(gc, info->sn, 0, header, - (prof && *prof) ? prof : NULL, + (prof && *prof) ? away_subs(prof, gc->username) : NULL, NULL); } } else { g_show_info_text(gc, info->sn, 1, "


", - (prof && *prof) ? prof : _("No Information Provided"), + (prof && *prof) ? away_subs(prof, gc->username) : + _("No Information Provided"), legend, NULL); }