summaryrefslogtreecommitdiff
path: root/installer/test.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-11-25 17:49:42 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-11-25 17:49:42 +0100
commitdc088e25c2e96969705de7424bf18390b1505354 (patch)
tree5c3a674d876998a6a95b706a3a7a24f577d7f9e1 /installer/test.php
parentfdbe5a88049ae708abaf5247db96cf8e9f95f51e (diff)
Fix installer to work with the new framework architecture
Diffstat (limited to 'installer/test.php')
-rw-r--r--installer/test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/test.php b/installer/test.php
index 28eb76940..836ef1365 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -3,8 +3,8 @@
<h3>Check config files</h3>
<?php
-$read_main = is_readable(RCMAIL_CONFIG_DIR.'/main.inc.php');
-$read_db = is_readable(RCMAIL_CONFIG_DIR.'/db.inc.php');
+$read_main = is_readable(RCUBE_CONFIG_DIR.'/main.inc.php');
+$read_db = is_readable(RCUBE_CONFIG_DIR.'/db.inc.php');
if ($read_main && !empty($RCI->config)) {
$RCI->pass('main.inc.php');