diff options
author | thomascube <thomas@roundcube.net> | 2010-08-07 12:04:39 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-08-07 12:04:39 +0000 |
commit | 4859fedb92b2ac0b3e717133c2ee32fa449ed06b (patch) | |
tree | 41867c40f5fd169b32f97a36acf9c14913652213 /program/include | |
parent | 601597a545f1e11252fbfe29c248ab85545d6541 (diff) |
Fix unit tests + update version
Diffstat (limited to 'program/include')
-rwxr-xr-x | program/include/iniset.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 2a30e51c1..a4f87e95e 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -45,7 +45,9 @@ if (!defined('INSTALL_PATH')) { define('INSTALL_PATH', dirname($_SERVER['SCRIPT_FILENAME']).'/'); } -define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); +if (!defined('RCMAIL_CONFIG_DIR')) { + define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); +} // make sure path_separator is defined if (!defined('PATH_SEPARATOR')) { |