diff options
author | till <till@php.net> | 2008-05-31 09:43:49 +0000 |
---|---|---|
committer | till <till@php.net> | 2008-05-31 09:43:49 +0000 |
commit | ff522265d15ef5f427bfc85f4f1d253a9c8c7fab (patch) | |
tree | 9144198d943ba41909984f8f65bd866c1abab058 /installer/check.php | |
parent | d1e8e3f5a088c882211475c2af84444b3f074549 (diff) |
* cs fixes
Diffstat (limited to 'installer/check.php')
-rw-r--r-- | installer/check.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/installer/check.php b/installer/check.php index c0f06d4ab..3b64af3b0 100644 --- a/installer/check.php +++ b/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'); |