diff options
-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)) |