From: Eric W. <war...@us...> - 2001-11-27 00:54:04
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory usw-pr-cvs1:/tmp/cvs-serv29460 Modified Files: oscar.c Log Message: (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. Index: oscar.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- oscar.c 2001/11/26 20:39:54 1.73 +++ oscar.c 2001/11/27 00:54:01 1.74 @@ -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) : _("<i>User has no away message</i>"), 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, "<BR><HR><BR>", - (prof && *prof) ? prof : _("<i>No Information Provided</i>"), + (prof && *prof) ? away_subs(prof, gc->username) : + _("<i>No Information Provided</i>"), legend, NULL); } |