summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/index.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-21 18:57:47 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-21 18:57:47 +0000
commit3cb31f78a497a52baa858227c1083caf7b04dde4 (patch)
tree02cea70519e66578e79d964c873af188f6b646d8 /roundcubemail/installer/index.php
parentadfc6768a31bd883ee5f00c556b81e83395252d7 (diff)
#1485741: fix installer after some last changes
git-svn-id: https://svn.roundcube.net/trunk@2306 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/index.php')
-rw-r--r--roundcubemail/installer/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/installer/index.php b/roundcubemail/installer/index.php
index f7a5cea4b..549b6f007 100644
--- a/roundcubemail/installer/index.php
+++ b/roundcubemail/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];