| | |
| | | |
| | | |
| | | // application constants |
| | | define('RCMAIL_VERSION', '0.2-trunk'); |
| | | define('RCMAIL_VERSION', '0.3-trunk'); |
| | | define('RCMAIL_CHARSET', 'UTF-8'); |
| | | define('JS_OBJECT_NAME', 'rcmail'); |
| | | |
| | |
| | | |
| | | // make sure path_separator is defined |
| | | if (!defined('PATH_SEPARATOR')) { |
| | | define('PATH_SEPARATOR', (eregi('win', PHP_OS) ? ';' : ':')); |
| | | define('PATH_SEPARATOR', (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') ? ';' : ':'); |
| | | } |
| | | |
| | | // RC include folders MUST be included FIRST to avoid other |
| | |
| | | ), |
| | | $classname |
| | | ); |
| | | include_once $filename. '.php'; |
| | | include $filename. '.php'; |
| | | } |
| | | |
| | | /** |