Aleksander Machniak
2015-09-01 3b59a3202608ead89b887b3048af0a0d0bb99f1e
Fix support for Mozilla-based browsers, e.g. Pale Moon (#1490517)

Conflicts:
program/js/app.js
2 files modified
5 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 4 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -9,6 +9,7 @@
- Fix handling of plus character in mailto: links (#1490510)
- Fix so adding CC/BCC recipients from the sidebar unhides compose form fields in Classic skin (#1490472)
- Fix so gc.sh script removes also expired sessions from sql database (#1490512)
- Fix support for Mozilla-based browsers, e.g. Pale Moon (#1490517)
RELEASE 1.0.6
-------------
program/js/app.js
@@ -141,8 +141,8 @@
    var n, p = this;
    this.task = this.env.task;
    // check browser
    if (this.env.server_error != 409 && (!bw.dom || !bw.xmlhttp_test() || (bw.mz && bw.vendver < 1.9))) {
    // check browser capabilities (never use version checks here)
    if (this.env.server_error != 409 && (!bw.dom || !bw.xmlhttp_test())) {
      this.goto_url('error', '_code=0x199');
      return;
    }