Author: gburt
Date: Tue Jan  8 16:59:30 2008
New Revision: 2952
URL: http://svn.gnome.org/viewvc/banshee?rev=2952&view=rev

Log:
2008-01-08  Gabriel Burt  <[EMAIL PROTECTED]>

        * src/Core/Banshee/PlayerInterface.cs: Escape markup in log messages
        before putting them into the popup boxes.


Modified:
   branches/banshee/stable/ChangeLog
   branches/banshee/stable/src/Core/Banshee/PlayerInterface.cs

Modified: branches/banshee/stable/src/Core/Banshee/PlayerInterface.cs
==============================================================================
--- branches/banshee/stable/src/Core/Banshee/PlayerInterface.cs (original)
+++ branches/banshee/stable/src/Core/Banshee/PlayerInterface.cs Tue Jan  8 
16:59:30 2008
@@ -1384,8 +1384,9 @@
                 DialogFlags.Modal,
                 mtype,
                 ButtonsType.Close,
-                entry.ShortMessage,
-                entry.Details);
+                GLib.Markup.EscapeText(entry.ShortMessage),
+                GLib.Markup.EscapeText(entry.Details)
+            );
             
             dialog.Title = String.Empty;
             IconThemeUtils.SetWindowIcon(dialog);
_______________________________________________
SVN-commits-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/svn-commits-list

Reply via email to