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/include | |
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/include')
-rw-r--r-- | program/include/iniset.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 0081aa021..25ae0189b 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -52,7 +52,7 @@ if (!defined('RCUBE_LOCALIZATION_DIR')) { } define('RCUBE_INSTALL_PATH', INSTALL_PATH); -define('RCUBE_CONFIG_DIR', RCMAIL_CONFIG_DIR); +define('RCUBE_CONFIG_DIR', RCMAIL_CONFIG_DIR.'/'); // RC include folders MUST be included FIRST to avoid other |