summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-07-07 17:34:45 +0000
committerthomascube <thomas@roundcube.net>2006-07-07 17:34:45 +0000
commit321302e52788e79c3548adde8d66f8ad426c9591 (patch)
tree23c14a04bb916d8705b018fd6240ed57eda745fd
parent5f383dc98c40a6d3c230c81113b980fcac179ac4 (diff)
Fixed INSTALL_PATH bug #1425663
-rw-r--r--CHANGELOG5
-rw-r--r--index.php4
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d99474a98..0e0b36059 100644
--- a/CHANGELOG
+++ b/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/index.php b/index.php
index 88c712082..33f28c081 100644
--- a/index.php
+++ b/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))