diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:57:39 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:57:39 +0100 |
commit | 5926684aab72265d243142010d9dfa8d642efdb9 (patch) | |
tree | e15eb289e3367465fa637338b39311892f71754e /program/lib/Roundcube/bootstrap.php | |
parent | 92964a4a6c40539ba100f71c3c5be35930be2867 (diff) |
Unify path schema in global constants: paths always end with a /. Keep RCMAIL_CONFIG_DIR for backwards compatibility
Diffstat (limited to 'program/lib/Roundcube/bootstrap.php')
-rw-r--r-- | program/lib/Roundcube/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index e2fd2a732..47020c1ab 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -60,7 +60,7 @@ if (!defined('RCUBE_INSTALL_PATH')) { } if (!defined('RCUBE_CONFIG_DIR')) { - define('RCUBE_CONFIG_DIR', RCUBE_INSTALL_PATH . 'config'); + define('RCUBE_CONFIG_DIR', RCUBE_INSTALL_PATH . 'config/'); } if (!defined('RCUBE_PLUGINS_DIR')) { |