MINOR remove the sqlite databases from the installer list.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100697 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
trix 2010-03-09 02:54:25 +00:00 committed by Sam Minnee
parent 2196f2cffc
commit 745816f612

View File

@ -73,17 +73,6 @@ DatabaseAdapterRegistry::register(
function_exists('pg_query'),
null,
'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.');
DatabaseAdapterRegistry::register(
'SQLitePDODatabase',
'SQLite PDO',
'sqlite3/code/SQLitePDODatabaseConfigurationHelper.php',
in_array('sqlite', PDO::getAvailableDrivers()));
DatabaseAdapterRegistry::register(
'SQLite3Database',
'SQLite 3',
'sqlite3/code/SQLite3DatabaseConfigurationHelper.php',
class_exists('SQLite3'),
'');
// Discover any 3rd party ones
DatabaseAdapterRegistry::autodiscover();