diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-20 19:23:59 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-20 19:23:59 +0200 |
commit | bcedf05d19ba1b2f63bdbfe42ff2c726fc50b6b6 (patch) | |
tree | ba3ed5cc3b6062483a1f30f8ab0d1d8511a67a65 /installer | |
parent | 85ef036bbd7d77d6fc7deef4890af8671f689d41 (diff) |
s/$rcmail_config/$config/ also for plugins configuration
Diffstat (limited to 'installer')
-rw-r--r-- | installer/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/index.php b/installer/index.php index d084c8aa5..d90c4f981 100644 --- a/installer/index.php +++ b/installer/index.php @@ -125,12 +125,12 @@ if ($RCI->configured && empty($_REQUEST['_step'])) { if ($RCI->configured && $RCI->legacy_config) { echo '<h2 class="error">Your configuration needs to be migrated!</h2>'; echo '<p>We changed the configuration files structure and your installation needs to be updated accordingly.</p>'; - echo '<p>Please run the <tt>bin/update.sh</tt> script from the command line or set <p> <tt>$rcmail_config[\'enable_installer\'] = true;</tt></p>'; + echo '<p>Please run the <tt>bin/update.sh</tt> script from the command line or set <p> <tt>$rcube_config[\'enable_installer\'] = true;</tt></p>'; echo ' in your RCUBE_CONFIG_DIR/main.inc.php to let the installer help you migrating it.</p>'; } else { echo '<h2 class="error">The installer is disabled!</h2>'; - echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in RCUBE_CONFIG_DIR/config.inc.php</p>'; + echo '<p>To enable it again, set <tt>$config[\'enable_installer\'] = true;</tt> in RCUBE_CONFIG_DIR/config.inc.php</p>'; } echo '</div></body></html>'; exit; |