summaryrefslogtreecommitdiff
path: root/installer/test.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-11-25 17:57:39 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-11-25 17:57:39 +0100
commit5926684aab72265d243142010d9dfa8d642efdb9 (patch)
treee15eb289e3367465fa637338b39311892f71754e /installer/test.php
parent92964a4a6c40539ba100f71c3c5be35930be2867 (diff)
Unify path schema in global constants: paths always end with a /. Keep RCMAIL_CONFIG_DIR for backwards compatibility
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 836ef1365..e266bf05f 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -3,8 +3,8 @@
<h3>Check config files</h3>
<?php
-$read_main = is_readable(RCUBE_CONFIG_DIR.'/main.inc.php');
-$read_db = is_readable(RCUBE_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');