Separate framework and application constants

pull/66/head
Thomas Bruederli 12 years ago
parent e2e2e8f379
commit fdbe5a8804

@ -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

@ -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__).'/');

Loading…
Cancel
Save