diff options
Diffstat (limited to 'program/include/iniset.php')
-rw-r--r-- | program/include/iniset.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 3e718c9bf..0081aa021 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -20,6 +20,10 @@ +-----------------------------------------------------------------------+ */ +// application constants +define('RCMAIL_VERSION', '0.9-git'); +define('RCMAIL_START', microtime(true)); + $config = array( // Some users are not using Installer, so we'll check some // critical PHP settings here. Only these, which doesn't provide @@ -43,6 +47,14 @@ if (!defined('RCMAIL_CONFIG_DIR')) { define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); } +if (!defined('RCUBE_LOCALIZATION_DIR')) { + define('RCUBE_LOCALIZATION_DIR', INSTALL_PATH . 'program/localization/'); +} + +define('RCUBE_INSTALL_PATH', INSTALL_PATH); +define('RCUBE_CONFIG_DIR', RCMAIL_CONFIG_DIR); + + // RC include folders MUST be included FIRST to avoid other // possible not compatible libraries (i.e PEAR) to be included // instead the ones provided by RC |