Index: lams_central/web/login.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/login.jsp,v
diff -u -r1.47 -r1.48
--- lams_central/web/login.jsp 13 Feb 2012 08:20:55 -0000 1.47
+++ lams_central/web/login.jsp 27 Feb 2012 01:54:11 -0000 1.48
@@ -85,17 +85,17 @@
if (!hasRequiredFlashVersion) {
// show error message
document.write('
');
+ document.write('
');
}
- if(isBrowserNotCompatable()) {
- // incompatable browser - show warning message
+ if(isBrowserNotCompatible()) {
+ // incompatible browser - show warning message
document.write(' 
');
document.write('
');
}
- function isBrowserNotCompatable() {
- if(ie8 || ie7) return false; // IE8 IE7
+ function isBrowserNotCompatible() {
+ if(ie8 || ie7 || ie9) return false; // IE8 IE7 IE9
else if(saf4) return false; //Safari4
else if(chrome) return false; //Chrome
else if(ie5xwin || ie5 || ie4 || ie5mac || ie5x || ie6) return true;
@@ -163,4 +163,4 @@