pidgin: c5a5ae3e: Properly quote the imgstore ID in the HT...

qulogic at pidgin.im qulogic at pidgin.im
Wed Sep 2 17:51:22 EDT 2009


-----------------------------------------------------------------
Revision: c5a5ae3ea1c3e30678aaa46e73e24b3b51ef32c6
Ancestor: b4a95ea62b81a06ffc1993912471c511b786efdd
Author: qulogic at pidgin.im
Date: 2009-09-02T03:22:15
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/c5a5ae3ea1c3e30678aaa46e73e24b3b51ef32c6

Modified files:
        ChangeLog libpurple/protocols/msn/switchboard.c

ChangeLog: 

Properly quote the imgstore ID in the HTML for an Ink message so that the
HTML logger saves it.

-------------- next part --------------
============================================================
--- ChangeLog	2a5c81f3e17a1ad23ab8a81ec7d33aa4a8f7e396
+++ ChangeLog	831e2ebdd0260b68a2c19f6ee47eeec600d43d9c
@@ -4,9 +4,12 @@ version 2.6.2 (??/??/2009):
 	libpurple:
 	* Fix --disable-avahi to actually disable it in configure, as opposed
 	  to just making the warning non-fatal.
-	* Sending custom smileys in MSN chats is now supported.
 	* Fix using GNOME proxy settings properly.  (Erik van Pienbroek)
 
+	MSN:
+	* Sending custom smileys in chats is now supported.
+	* Ink messages are now saved when using the HTML logger.
+
 	XMPP:
 	* Prompt the user before cancelling a presence subscription.
 	* Escape status messages that have HTML entities in the Get Info dialog.
============================================================
--- libpurple/protocols/msn/switchboard.c	1ba93cad398d9fdb1c5b54daf506665de8702829
+++ libpurple/protocols/msn/switchboard.c	ff4090ce57e6227e9e6fe628208577a0ca315df6
@@ -920,7 +920,7 @@ msn_switchboard_show_ink(MsnSwitchBoard 
 	}
 
 	imgid = purple_imgstore_add_with_id(image_data, image_len, NULL);
-	image_msg = g_strdup_printf("<IMG ID=%d/>", imgid);
+	image_msg = g_strdup_printf("<IMG ID='%d'/>", imgid);
 
 	if (swboard->current_users > 1 ||
 		((swboard->conv != NULL) &&


More information about the Commits mailing list