Просмотр исходного кода

2006-04-11 Chris Toshok <[email protected]>

	* Login.cs (OnLoggingIn): use Events[loggingInEvent].


svn path=/trunk/mcs/; revision=59360
Chris Toshok 20 лет назад
Родитель
Сommit
8fc5d1932d

+ 4 - 0
mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog

@@ -1,3 +1,7 @@
+2006-04-11  Chris Toshok  <[email protected]>
+
+	* Login.cs (OnLoggingIn): use Events[loggingInEvent].
+
 2006-04-06	Konstantin Triger <[email protected]>
 
 	* BaseDataList.cs: Fix searching control by DataSourceID.

+ 1 - 1
mcs/class/System.Web/System.Web.UI.WebControls/Login.cs

@@ -1145,7 +1145,7 @@ namespace System.Web.UI.WebControls {
 		protected virtual void OnLoggingIn (LoginCancelEventArgs e)
 		{
 			// this gets called before OnAuthenticate so we can abort the authentication process
-			LoginCancelEventHandler loggingIn = (LoginCancelEventHandler) Events [loggedInEvent];
+			LoginCancelEventHandler loggingIn = (LoginCancelEventHandler) Events [loggingInEvent];
 			if (loggingIn != null)
 				loggingIn (this, e);
 		}