summaryrefslogtreecommitdiff
path: root/installer/index.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/index.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/index.php')
-rw-r--r--installer/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/index.php b/installer/index.php
index 40dabc893..7a78736b8 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -41,7 +41,7 @@ ini_set('display_errors', 1);
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/');
define('RCUBE_INSTALL_PATH', INSTALL_PATH);
-define('RCUBE_CONFIG_DIR', INSTALL_PATH . 'config');
+define('RCUBE_CONFIG_DIR', INSTALL_PATH . 'config/');
$include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
$include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR;