Changeset a9261ca in github
- Timestamp:
- Feb 21, 2008 3:57:21 PM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 5ba7908
- Parents:
- 0f675bc
- File:
-
- 1 edited
-
check.php-dist (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check.php-dist
re509121 ra9261ca 79 79 80 80 $supported_drivers = array('MDB2#mysql' => 'MDB2/Driver/mysql.php', 81 'MDB2#pgsql' => 'MDB2/Driver/pgsql.php', 'MDB2#sqlite' => 'MDB2/Driver/sqlite.php'); 81 'MDB2#pgsql' => 'MDB2/Driver/pgsql.php', 82 'MDB2#sqlite' => 'MDB2/Driver/sqlite.php'); 82 83 83 84 $supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli', 84 85 'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); 85 86 86 $required_php_exts = array('Session' => 'session', 'PCRE' => 'pcre', 'Sockets' => 'sockets'); 87 88 $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl'); 87 $required_php_exts = array('Session' => 'session', 88 'PCRE' => 'pcre', 'Sockets' => 'sockets'); 89 90 $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 91 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'GD' => 'gd'); 89 92 90 93 $source_urls = array( … … 109 112 function show_hint($key) { 110 113 global $source_urls; 111 if ($source_urls[$key]) 112 echo '<span class="indent">(See <a href="' . $source_urls[$key] . '">' . $source_urls[$key] . '</a>)</span>'; 114 if ($source_urls[$key]) { 115 echo '<span class="indent">(See <a href="' . $source_urls[$key] . '">'; 116 echo $source_urls[$key] . '</a>)</span>'; 117 } 113 118 } 114 119
Note: See TracChangeset
for help on using the changeset viewer.
