summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-04-21 16:39:19 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-04-21 16:39:19 +0200
commiteea11ecdde396ffc261c20ab930120612260d931 (patch)
tree5d3f79d6ceea27ca5e899b3f6a068f4d422f8feb /bin
parentd2e3a22d24190c02741e8a67ff1fd8601fe17e07 (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 'bin')
-rwxr-xr-xbin/update.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/update.sh b/bin/update.sh
index d35e1eb0d..91af6413d 100755
--- a/bin/update.sh
+++ b/bin/update.sh
@@ -22,7 +22,6 @@
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
require_once INSTALL_PATH . 'program/include/clisetup.php';
-require_once INSTALL_PATH . 'installer/rcube_install.php';
// get arguments
$opts = rcube_utils::get_opt(array('v' => 'version', 'y' => 'accept'));
@@ -36,7 +35,7 @@ if (!$opts['version']) {
$opts['version'] = RCMAIL_VERSION;
}
-$RCI = rcube_install::get_instance();
+$RCI = rcmail_install::get_instance();
$RCI->load_config();
if ($RCI->configured) {