[Mono-bugs] [Bug 59679][Blo] Changed - Mono Beta 2 bug with ASP.NET Tracing and NULL message value.

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 7 Jun 2004 02:07:28 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by gonzalo@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=59679

--- shadow/59679	2004-06-07 01:49:29.000000000 -0400
+++ shadow/59679.tmp.5324	2004-06-07 02:07:28.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 59679
 Product: Mono: Class Libraries
 Version: unspecified
 OS: Red Hat 9.0
 OS Details: 
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: 001 One hour
 Priority: Blocker
 Component: Sys.Web
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: davidandrewtaylor@hotmail.com               
 QAContact: mono-bugs@ximian.com
@@ -77,6 +77,20 @@
 appreciate this line being change to fix the bug after which I will 
 checkout the latest version in CVS and verify and close the bug report.  
 It would be great to have this fixed for Beta 3.
 
 Thanks,
 David Taylor
+
+------- Additional Comments From gonzalo@ximian.com  2004-06-07 02:07 -------
+Fixed in CVS.
+
+Btw, that line is changed in CVS, so the fix was:
+@@ -125,7 +125,7 @@
+                static string HtmlEncode (string s)
+                {
+                        if (s == null)
+-                               return s;
++                               return "";
+
+                        string res = HttpUtility.HtmlEncode (s);
+                        res = res.Replace ("\n", "<br />");