diff options
author | thomascube <thomas@roundcube.net> | 2006-07-07 17:34:45 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-07-07 17:34:45 +0000 |
commit | 321302e52788e79c3548adde8d66f8ad426c9591 (patch) | |
tree | 23c14a04bb916d8705b018fd6240ed57eda745fd | |
parent | 5f383dc98c40a6d3c230c81113b980fcac179ac4 (diff) |
Fixed INSTALL_PATH bug #1425663
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | index.php | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,11 @@ CHANGELOG RoundCube Webmail --------------------------- +2006/07/07 +---------- +- Fixed INSTALL_PATH bug #1425663 + + 2006/07/03 (richs) ---------- - Fixed compatibility with in-body email addresses containing "+" (Bug #1483836) @@ -40,13 +40,13 @@ */ -define('RCMAIL_VERSION', '0.1-20060505'); +define('RCMAIL_VERSION', '0.1-20060707'); // define global vars $CHARSET = 'UTF-8'; $OUTPUT_TYPE = 'html'; $JS_OBJECT_NAME = 'rcmail'; -$INSTALL_PATH = dirname($_SERVER['SCRIPT_FILENAME']); +$INSTALL_PATH = dirname(__FILE__); $MAIN_TASKS = array('mail','settings','addressbook','logout'); if (empty($INSTALL_PATH)) |