comparison src/protocols/oscar/oscar.c @ 2797:ccb5b2f05d16

[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 <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 27 Nov 2001 00:54:01 +0000
parents 8f6365332a05
children 72357bddb0f3
comparison
equal deleted inserted replaced
2796:e8d26a18be94 2797:ccb5b2f05d16
1617 1617
1618 if (away) { 1618 if (away) {
1619 if (evilhack) { 1619 if (evilhack) {
1620 g_show_info_text(gc, info->sn, 2, 1620 g_show_info_text(gc, info->sn, 2,
1621 header, 1621 header,
1622 (prof && *prof) ? prof : 1622 (prof && *prof) ? away_subs(prof, gc->username) :
1623 _("<i>User has no away message</i>"), 1623 _("<i>User has no away message</i>"),
1624 legend, NULL); 1624 legend, NULL);
1625 } else { 1625 } else {
1626 g_show_info_text(gc, info->sn, 0, 1626 g_show_info_text(gc, info->sn, 0,
1627 header, 1627 header,
1628 (prof && *prof) ? prof : NULL, 1628 (prof && *prof) ? away_subs(prof, gc->username) : NULL,
1629 NULL); 1629 NULL);
1630 } 1630 }
1631 } else { 1631 } else {
1632 g_show_info_text(gc, info->sn, 1, 1632 g_show_info_text(gc, info->sn, 1,
1633 "<BR><HR><BR>", 1633 "<BR><HR><BR>",
1634 (prof && *prof) ? prof : _("<i>No Information Provided</i>"), 1634 (prof && *prof) ? away_subs(prof, gc->username) :
1635 _("<i>No Information Provided</i>"),
1635 legend, 1636 legend,
1636 NULL); 1637 NULL);
1637 } 1638 }
1638 1639
1639 return 1; 1640 return 1;