| 848 } |
847 } |
| 849 g_free(text); |
848 g_free(text); |
| 850 } |
849 } |
| 851 } |
850 } |
| 852 |
851 |
| 853 title = g_strdup_printf("User info for %s", from); |
|
| 854 |
|
| 855 text = gaim_strdup_withhtml(info_text->str); |
852 text = gaim_strdup_withhtml(info_text->str); |
| 856 |
853 |
| 857 gaim_notify_userinfo(js->gc, from, _("Jabber Profile"), |
854 gaim_notify_userinfo(js->gc, from, _("Jabber Profile"), |
| 858 NULL, text, NULL, NULL); |
855 NULL, text, NULL, NULL); |
| 859 |
856 |
| 860 while(imgids) { |
857 while(imgids) { |
| 861 gaim_imgstore_unref(GPOINTER_TO_INT(imgids->data)); |
858 gaim_imgstore_unref(GPOINTER_TO_INT(imgids->data)); |
| 862 imgids = g_slist_delete_link(imgids, imgids); |
859 imgids = g_slist_delete_link(imgids, imgids); |
| 863 } |
860 } |
| 864 g_free(title); |
|
| 865 g_string_free(info_text, TRUE); |
861 g_string_free(info_text, TRUE); |
| 866 g_free(text); |
862 g_free(text); |
| 867 g_free(bare_jid); |
863 g_free(bare_jid); |
| 868 } |
864 } |
| 869 |
865 |