Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-08-07 18:27:08 +0300
committerAleksander Machniak <alec@alec.pl>2015-08-08 10:32:24 +0300
commit1b39d9a6c744a393e7930c2493cc2ddc9c9e95bf (patch)
tree55abdf62b2be7bedbcf4d45ef1de44ed9307839b /index.php
parentb3e9764c311a39012de1fa8ffd0fe874fbb322ef (diff)
PHP7: Fixed some E_WARNING errors that previously were E_STRICT
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index c029b5a26..1ebbdca25 100644
--- a/index.php
+++ b/index.php
@@ -40,7 +40,7 @@
require_once 'program/include/iniset.php';
// init application, start session, init output class, etc.
-$RCMAIL = rcmail::get_instance($GLOBALS['env']);
+$RCMAIL = rcmail::get_instance(0, $GLOBALS['env']);
// Make the whole PHP output non-cacheable (#1487797)
$RCMAIL->output->nocacheing_headers();