diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rwxr-xr-x | program/js/tiny_mce/plugins/spellchecker/config.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ CHANGELOG RoundCube Webmail in MS Outlook/OE (#1485320) - Added "advanced options" feature in User Preferences - Fix unread counter when displaying cached massage in preview panel (#1485290) +- Fix htmleditor spellchecking on MS Windows (#1485397) 2008/09/25 (alec) ---------- diff --git a/program/js/tiny_mce/plugins/spellchecker/config.php b/program/js/tiny_mce/plugins/spellchecker/config.php index 53e6e469f..b653dc900 100755 --- a/program/js/tiny_mce/plugins/spellchecker/config.php +++ b/program/js/tiny_mce/plugins/spellchecker/config.php @@ -2,7 +2,7 @@ /** start RoundCube specific code */
- define('INSTALL_PATH', preg_replace('/program\/js\/.+$/', '', getcwd()));
+ define('INSTALL_PATH', preg_replace('/program[\\\\\/]js[\\\\\/].+$/', '', getcwd()));
require_once INSTALL_PATH . 'program/include/iniset.php';
$rcmail_config = new rcube_config();
|