summaryrefslogtreecommitdiff
path: root/installer/index.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-02-21 18:57:47 +0000
committeralecpl <alec@alec.pl>2009-02-21 18:57:47 +0000
commit0ff63513c2c172ba9986b5d3f077951b1c47a328 (patch)
tree2c67a8f8fba27f7c01ee8eb19af10d079382e1a6 /installer/index.php
parent8a78a16155fb1df7142b9cfa573d318c940b0dae (diff)
#1485741: fix installer after some last changes
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];