diff options
author | thomascube <thomas@roundcube.net> | 2008-09-19 18:26:34 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-19 18:26:34 +0000 |
commit | bba657e64ff3334ba2f64e88e977a6dc107d682d (patch) | |
tree | c09b64f5a585914a43748ee19167f7b4bf0134a5 /installer/test.php | |
parent | ddd894dbe86c678076b51fc10a9ef8a655f29d68 (diff) |
Made config files location configurable (#1485215)
Diffstat (limited to 'installer/test.php')
-rw-r--r-- | installer/test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/test.php b/installer/test.php index 0edfcc904..ca7c7add4 100644 --- a/installer/test.php +++ b/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'); |