Skip to content

Commit

Permalink
no postgreSQL support on install
Browse files Browse the repository at this point in the history
  • Loading branch information
joebordes committed Jun 29, 2014
1 parent 9362188 commit 154a859
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/install/resources/utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ static function getDbOptions() {
if(function_exists('mysql_connect')) {
$dbOptions['mysql'] = 'MySQL';
}
if(function_exists('pg_connect')) {
$dbOptions['pgsql'] = 'Postgres';
}
// postgres is not supported
// if(function_exists('pg_connect')) {
// $dbOptions['pgsql'] = 'Postgres';
// }
return $dbOptions;
}

Expand Down

0 comments on commit 154a859

Please sign in to comment.