mirror of
https://abf.rosa.ru/djam/pidgin.git
synced 2025-02-23 13:32:47 +00:00
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
diff -Naur pidgin-2.3.1/libpurple/protocols/gg/gg.c pidgin-2.3.1.tpg/libpurple/protocols/gg/gg.c
|
|
--- pidgin-2.3.1/libpurple/protocols/gg/gg.c 2007-12-07 14:37:05.000000000 +0000
|
|
+++ pidgin-2.3.1.tpg/libpurple/protocols/gg/gg.c 2008-01-15 15:10:45.000000000 +0000
|
|
@@ -580,6 +580,9 @@
|
|
form->nickname = charset_convert(
|
|
purple_request_fields_get_string(fields, "nickname"),
|
|
"UTF-8", "CP1250");
|
|
+ form->uin = charset_convert(
|
|
+ purple_request_fields_get_string(fields, "uin"),
|
|
+ "UTF-8", "CP1250");
|
|
form->city = charset_convert(
|
|
purple_request_fields_get_string(fields, "city"),
|
|
"UTF-8", "CP1250");
|
|
@@ -639,6 +642,11 @@
|
|
purple_request_field_string_set_masked(field, FALSE);
|
|
purple_request_field_group_add_field(group, field);
|
|
|
|
+ field = purple_request_field_string_new("uin",
|
|
+ _("UIN"), NULL, FALSE);
|
|
+ purple_request_field_string_set_masked(field, FALSE);
|
|
+ purple_request_field_group_add_field(group, field);
|
|
+
|
|
field = purple_request_field_string_new("city",
|
|
_("City"), NULL, FALSE);
|
|
purple_request_field_string_set_masked(field, FALSE);
|