2004-01-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 6 Jan 2004 22:30:50 +0000 (22:30 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 6 Jan 2004 22:30:50 +0000 (22:30 -0000)
* HttpException.cs: default to error 500. Fixes bug #52623.

svn path=/trunk/mcs/; revision=21757

mcs/class/System.Web/System.Web/ChangeLog
mcs/class/System.Web/System.Web/HttpException.cs

index 8e91c6e73f513dfeb23c0b852610ba90a6465160..9c2265ede599e5170b2dd8a88a8cef351a321885 100644 (file)
@@ -1,3 +1,7 @@
+2004-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * HttpException.cs: default to error 500. Fixes bug #52623.
+
 2004-01-04  Jackson Harper <jackson@ximian.com>
 
        * TraceContext.cs: Store and render trace info times. Also render
index 673997f1c2217f376437e133425555a936a75e9b..4772e0336d622d18e2909f307d60e062002424cb 100644 (file)
@@ -23,7 +23,7 @@ namespace System.Web
 #endif
        public class HttpException : ExternalException
        {
-               int http_code;
+               int http_code = 500;
                int hr;
                string fileName;