summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/test.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-19 18:26:34 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-19 18:26:34 +0000
commit6f960c938e6b31cfa7cc874ef6dad768c8522544 (patch)
treebffbc65fca7c5bc13ff5e837f2b4d3add7e9ba53 /roundcubemail/installer/test.php
parent2dd4e7f7031f7b5df4bcde95058bbb8dff8bcfed (diff)
Made config files location configurable (#1485215)
git-svn-id: https://svn.roundcube.net/trunk@1854 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/test.php')
-rw-r--r--roundcubemail/installer/test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/installer/test.php b/roundcubemail/installer/test.php
index 0edfcc904..ca7c7add4 100644
--- a/roundcubemail/installer/test.php
+++ b/roundcubemail/installer/test.php
@@ -3,8 +3,8 @@
<h3>Check config files</h3>
<?php
-$read_main = is_readable(INSTALL_PATH.'config/main.inc.php');
-$read_db = is_readable(INSTALL_PATH.'config/db.inc.php');
+$read_main = is_readable(RCMAIL_CONFIG_DIR.'/main.inc.php');
+$read_db = is_readable(RCMAIL_CONFIG_DIR.'/db.inc.php');
if ($read_main && !empty($RCI->config)) {
$RCI->pass('main.inc.php');