Author: gonzalo
Date: 2005-09-23 20:50:54 -0400 (Fri, 23 Sep 2005)
New Revision: 50660

Modified:
   trunk/mcs/class/System.Web/System.Web/ChangeLog
   trunk/mcs/class/System.Web/System.Web/HttpApplication.cs
Log:
2005-09-23 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * HttpApplication.cs: fixed typo when setting UI culture. Closes bug
        #76189.



Modified: trunk/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web/ChangeLog     2005-09-24 00:45:40 UTC 
(rev 50659)
+++ trunk/mcs/class/System.Web/System.Web/ChangeLog     2005-09-24 00:50:54 UTC 
(rev 50660)
@@ -1,3 +1,8 @@
+2005-09-23 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * HttpApplication.cs: fixed typo when setting UI culture. Closes bug
+       #76189.
+
 2005-09-22 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * HttpRequest.cs: new SetFilePath() that does not conflict with

Modified: trunk/mcs/class/System.Web/System.Web/HttpApplication.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web/HttpApplication.cs    2005-09-24 
00:45:40 UTC (rev 50659)
+++ trunk/mcs/class/System.Web/System.Web/HttpApplication.cs    2005-09-24 
00:50:54 UTC (rev 50660)
@@ -947,7 +947,7 @@
 
                        if (appui_culture != null) {
                                prev_appui_culture = th.CurrentUICulture;
-                               th.CurrentCulture = appui_culture;
+                               th.CurrentUICulture = appui_culture;
                        }
 
 #if !TARGET_JVM

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to