summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-02-25 14:48:30 +0000
committerthomascube <thomas@roundcube.net>2012-02-25 14:48:30 +0000
commit1e09cd081107b4e4e639e599c4c95406559be111 (patch)
tree7ffdb5df4d7222fcf652e2b783ba6196cc397c34 /program/js
parentb6837c3732cd7699004a4a24adb89da497a8c8c1 (diff)
Slighlty increase minimum browser requirements
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index ad0cc9096..943136ee3 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -136,7 +136,7 @@ function rcube_webmail()
this.task = this.env.task;
// check browser
- if (!bw.dom || !bw.xmlhttp_test()) {
+ if (!bw.dom || !bw.xmlhttp_test() || (bw.mz && bw.vendver < 1.9)) {
this.goto_url('error', '_code=0x199');
return;
}