Mercurial > pidgin.yaz
changeset 772:bddbc51abc43
[gaim-migrate @ 782]
substitute %n %d %t in info
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Mon, 28 Aug 2000 16:51:20 +0000 |
parents | 72e556f6b99d |
children | 267ed2b889ee |
files | src/dialogs.c src/oscar.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialogs.c Mon Aug 28 05:07:43 2000 +0000 +++ b/src/dialogs.c Mon Aug 28 16:51:20 2000 +0000 @@ -1700,7 +1700,7 @@ void g_show_info(char *url) { char *url_text = grab_url(url); - g_show_info_text(url_text); + g_show_info_text(away_subs(url_text, current_user->username)); g_free(url_text); }
--- a/src/oscar.c Mon Aug 28 05:07:43 2000 +0000 +++ b/src/oscar.c Mon Aug 28 16:51:20 2000 +0000 @@ -775,7 +775,7 @@ info->idletime, infotype == AIM_GETINFO_GENERALINFO ? prof : away_subs(prof, current_user->username)); - g_show_info_text(buf); + g_show_info_text(away_subs(buf, current_user->username)); return 1; }