Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-04-26 03:46:27 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-04-26 03:46:27 +0400
commit7b9b6217c37339d52eecc4432adc5e3bd195f999 (patch)
tree004d06c91aa5fcce54cff30cb7b42d07a502fc6e /mcs
parent32fa15d9b0e7e033d155d01ef742c4e12bd5a9ed (diff)
2006-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HttpApplicationFactory.cs: make sure that the application start event is run before any request is processed. svn path=/branches/mono-1-1-13/mcs/; revision=59893
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Web/System.Web/ChangeLog5
-rw-r--r--mcs/class/System.Web/System.Web/HttpApplicationFactory.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web/ChangeLog b/mcs/class/System.Web/System.Web/ChangeLog
index 64c367d5bf0..1569231c5bd 100644
--- a/mcs/class/System.Web/System.Web/ChangeLog
+++ b/mcs/class/System.Web/System.Web/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * HttpApplicationFactory.cs: make sure that the application start event
+ is run before any request is processed.
+
2006-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HttpServerUtility.cs: don't reset the query string in Execute() when
diff --git a/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs b/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs
index cf39e4f500e..aabc7139096 100644
--- a/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs
+++ b/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs
@@ -401,7 +401,7 @@ namespace System.Web {
{
HttpApplicationFactory factory = theFactory;
HttpApplication app = null;
- if (factory.needs_init){
+ if (factory.app_start_needed){
if (context == null)
return null;