diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
commit | eea11ecdde396ffc261c20ab930120612260d931 (patch) | |
tree | 5d3f79d6ceea27ca5e899b3f6a068f4d422f8feb /installer/index.php | |
parent | d2e3a22d24190c02741e8a67ff1fd8601fe17e07 (diff) |
Move rcube_installer class to include/rcmail_installer in order to remain accessible by the update script even if the installer directory was removed
Diffstat (limited to 'installer/index.php')
-rw-r--r-- | installer/index.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/installer/index.php b/installer/index.php index d90c4f981..044eb3f57 100644 --- a/installer/index.php +++ b/installer/index.php @@ -50,14 +50,13 @@ $include_path .= ini_get('include_path'); set_include_path($include_path); require_once 'Roundcube/bootstrap.php'; -require_once 'rcube_install.php'; // deprecated aliases (to be removed) require_once 'bc.php'; if (function_exists('session_start')) session_start(); -$RCI = rcube_install::get_instance(); +$RCI = rcmail_install::get_instance(); $RCI->load_config(); if (isset($_GET['_getconfig'])) { |