Changeset a9261ca in github


Ignore:
Timestamp:
Feb 21, 2008 3:57:21 PM (5 years ago)
Author:
till <till@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
5ba7908
Parents:
0f675bc
Message:
  • added GD to the optional libs (quota image) - Thanks lancey!
File:
1 edited

Legend:

Unmodified
Added
Removed
  • check.php-dist

    re509121 ra9261ca  
    7979 
    8080$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'); 
    8283 
    8384$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli', 
    8485    'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); 
    8586 
    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'); 
    8992 
    9093$source_urls = array( 
     
    109112function show_hint($key) { 
    110113    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    } 
    113118} 
    114119 
Note: See TracChangeset for help on using the changeset viewer.