diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:45:38 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:45:38 +0100 |
commit | fdbe5a88049ae708abaf5247db96cf8e9f95f51e (patch) | |
tree | 7f31217ab0dfe03aedc1c2aeec7b6fa3d664f5fa /program/lib | |
parent | e2e2e8f37901eac134b133776f247658f2d33963 (diff) |
Separate framework and application constants
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/bootstrap.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index 018701d08..e2fd2a732 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -47,10 +47,9 @@ foreach ($config as $optname => $optval) { } } -// application constants -define('RCMAIL_VERSION', '0.9-git'); +// framework constants +define('RCUBE_VERSION', '0.9-git'); define('RCMAIL_CHARSET', 'UTF-8'); -define('RCMAIL_START', microtime(true)); if (!defined('RCUBE_LIB_DIR')) { define('RCUBE_LIB_DIR', dirname(__FILE__).'/'); |