Move database checks toconfig/index.php
authorGreg Sabino Mullane <greg@users.mediawiki.org>
Tue, 27 Jun 2006 14:16:21 +0000 (14:16 +0000)
committerGreg Sabino Mullane <greg@users.mediawiki.org>
Tue, 27 Jun 2006 14:16:21 +0000 (14:16 +0000)
install-utils.inc

index 235baaa..0ba6eca 100644 (file)
@@ -15,20 +15,6 @@ function install_version_checks() {
                die( -1 );
        }
 
-       $gotdatabase = 0;
-       ## XXX We should quiet the warnings thrown here
-       if (extension_loaded('mysql') or dl('mysql.so')) {
-               $gotdatabase = 'mysql';
-       }
-       else if (extension_loaded('pgsql') or dl('pgsql.so')) {
-               $gotdatabase = 'pg';
-       }
-       if (!$gotdatabase) {
-               print "Could not load the MySQL or the PostgreSQL driver! Please compile ".
-                         "php with either --with-mysql or --with-pgsql, or install the mysql.so or pg.so module.\n";
-               exit;
-       }
-
        global $wgCommandLineMode;
        $wgCommandLineMode = true;
        umask( 000 );