diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-18 10:56:08 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-18 10:56:08 +0000 |
| commit | d9bfd287be8351a74afe3f83cba14d03fa722cf7 (patch) | |
| tree | ec9b94c71d5910704b561987910b9c7c7398b886 | |
| parent | df66a679e7488b77e5af9ef1758404888445367b (diff) | |
- Add RCMAIL_CHARSET definition for Installer (#1488436)
git-svn-id: https://svn.roundcube.net/trunk@6096 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/installer/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/installer/index.php b/roundcubemail/installer/index.php index 0ae74a6d7..32fde22e1 100644 --- a/roundcubemail/installer/index.php +++ b/roundcubemail/installer/index.php @@ -3,7 +3,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail setup tool | - | Version 0.8 | + | Version 0.9-svn | | | | Copyright (C) 2009-2012, The Roundcube Dev Team | | | @@ -39,11 +39,12 @@ */ -ini_set('error_reporting', E_ALL&~E_NOTICE); +ini_set('error_reporting', E_ALL &~ (E_NOTICE | E_STRICT)); ini_set('display_errors', 1); define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); +define('RCMAIL_CHARSET', 'UTF-8'); $include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; $include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; |
