diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-07-07 17:34:45 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-07-07 17:34:45 +0000 |
| commit | e7c5d0833688fef95b944a103a1f14aaca8777c0 (patch) | |
| tree | 57ba2c7d30360a7736023013b37a19163c7592ae | |
| parent | 999127e2f59271307aa6b8104180ab0a004e9c2e (diff) | |
Fixed INSTALL_PATH bug #1425663
git-svn-id: https://svn.roundcube.net/trunk@274 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 5 | ||||
| -rw-r--r-- | roundcubemail/index.php | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index d99474a98..0e0b36059 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -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) diff --git a/roundcubemail/index.php b/roundcubemail/index.php index 88c712082..33f28c081 100644 --- a/roundcubemail/index.php +++ b/roundcubemail/index.php @@ -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)) |
