diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-07 14:17:08 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-07 14:17:08 +0000 |
| commit | 42598a6bfeb4f154425dc8eda993b3df8d22d36a (patch) | |
| tree | a0b5735c2f1830fcbb16756f97ddd0f6e9b8b926 /roundcubemail/program/js/app.js | |
| parent | 083b33000fa063e11863e0b1f68e586adf4e1384 (diff) | |
Several bugfixes and feature improvements
git-svn-id: https://svn.roundcube.net/trunk@21 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 30d870475..3182ce365 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -76,7 +76,8 @@ function rcube_webmail() this.task = this.env.task; // check browser - if (!(bw.dom && ((bw.ie && bw.vendver>=5.5 && !bw.opera) || (bw.mz && bw.vendver>=1) || (bw.safari && bw.vendver>=125) || (bw.opera && bw.vendver>=8)))) + if (!(bw.dom && ((bw.ie && bw.vendver>=5.5 && !bw.opera) || (bw.mz && bw.vendver>=1) || (bw.safari && bw.vendver>=125) || + (bw.opera && bw.vendver>=8) || (bw.konq && bw.vendver>=3.4)))) { location.href = this.env.comm_path+'&_action=error&_code=0x199'; return; |
