[LON-CAPA-cvs] cvs: loncom /auth lonlogin.pm
bisitz
bisitz@source.lon-capa.org
Thu, 26 Aug 2010 14:16:23 -0000
bisitz Thu Aug 26 14:16:23 2010 EDT
Modified files:
/loncom/auth lonlogin.pm
Log:
Bug 6345 resolution side effect:
Make changes from rev. 1.139 also work in Internet Explorer 6 and 7 by using the exact name (case!)
Index: loncom/auth/lonlogin.pm
diff -u loncom/auth/lonlogin.pm:1.143 loncom/auth/lonlogin.pm:1.144
--- loncom/auth/lonlogin.pm:1.143 Thu Aug 26 08:10:47 2010
+++ loncom/auth/lonlogin.pm Thu Aug 26 14:16:23 2010
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Login Screen
#
-# $Id: lonlogin.pm,v 1.143 2010/08/26 08:10:47 raeburn Exp $
+# $Id: lonlogin.pm,v 1.144 2010/08/26 14:16:23 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -309,9 +309,9 @@
}
function enableInput() {
- this.document.client.elements.upass$now.removeAttribute("readonly");
- this.document.client.elements.uname.removeAttribute("readonly");
- this.document.client.elements.udom.removeAttribute("readonly");
+ this.document.client.elements.upass$now.removeAttribute("readOnly");
+ this.document.client.elements.uname.removeAttribute("readOnly");
+ this.document.client.elements.udom.removeAttribute("readOnly");
return;
}