diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-31 09:43:49 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-31 09:43:49 +0000 |
| commit | 8113cf3bedd7dc758d48c0cb5be59a52244bf3c4 (patch) | |
| tree | 6f4c1a969a2cb78af7f280c0aca7a28a93f51325 | |
| parent | 26244958a80496343a2333740fe41b42f1bba9de (diff) | |
* cs fixes
git-svn-id: https://svn.roundcube.net/trunk@1461 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/installer/check.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php index c0f06d4ab..3b64af3b0 100644 --- a/roundcubemail/installer/check.php +++ b/roundcubemail/installer/check.php @@ -1,13 +1,16 @@ <form action="index.php" method="get"> <?php -$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'DOM XML' => 'dom'); +$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', + 'DOM XML' => 'dom'); $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', - 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', 'GD' => 'gd'); + 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', + 'GD' => 'gd'); $required_libs = array('PEAR' => 'PEAR.php', 'DB' => 'DB.php', 'MDB2' => 'MDB2.php', - 'Net_SMTP' => 'Net/SMTP.php', 'Mail_mime' => 'Mail/mime.php', 'iilConnection' => 'lib/imap.inc'); + 'Net_SMTP' => 'Net/SMTP.php', 'Mail_mime' => 'Mail/mime.php', + 'iilConnection' => 'lib/imap.inc'); $supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli', 'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); |
