summaryrefslogtreecommitdiff
path: root/installer/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'installer/index.php')
-rw-r--r--installer/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/index.php b/installer/index.php
index f7a5cea4b..549b6f007 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -13,6 +13,7 @@ $include_path .= ini_get('include_path');
set_include_path($include_path);
+require_once 'rcube_shared.inc';
require_once 'utils.php';
session_start();
@@ -105,7 +106,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
</ol>
<?php
-$include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
+$include_steps = array('./welcome.html', './check.php', './config.php', './test.php');
if ($include_steps[$RCI->step]) {
include $include_steps[$RCI->step];