Skip to content

Commit

Permalink
Connect if the eponymous database does not exist (bug #3391619)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Aug 22, 2011
1 parent a88dccb commit daf60b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adminer/drivers/pgsql.inc.php
Expand Up @@ -21,7 +21,7 @@ function connect($server, $username, $password) {
$db = $adminer->database();
set_error_handler(array($this, '_error'));
$this->_string = "host='" . str_replace(":", "' port='", addcslashes($server, "'\\")) . "' user='" . addcslashes($username, "'\\") . "' password='" . addcslashes($password, "'\\") . "'";
$this->_link = @pg_connect($this->_string . ($db != "" ? " dbname='" . addcslashes($db, "'\\") . "'" : " dbname='template1'"), PGSQL_CONNECT_FORCE_NEW);
$this->_link = @pg_connect("$this->_string dbname='" . ($db != "" ? addcslashes($db, "'\\") : "template1") . "'", PGSQL_CONNECT_FORCE_NEW);
if (!$this->_link && $db != "") {
// try to connect directly with database for performance
$this->_database = false;
Expand Down Expand Up @@ -132,7 +132,7 @@ function connect($server, $username, $password) {
global $adminer;
$db = $adminer->database();
$string = "pgsql:host='" . str_replace(":", "' port='", addcslashes($server, "'\\")) . "' options='-c client_encoding=utf8'";
$this->dsn($string . ($db != "" ? " dbname='" . addcslashes($db, "'\\") . "'" : ""), $username, $password);
$this->dsn("$string dbname='" . ($db != "" ? addcslashes($db, "'\\") : "template1") . "'", $username, $password);
//! connect without DB in case of an error
return true;
}
Expand Down
3 changes: 3 additions & 0 deletions changes.txt
@@ -1,3 +1,6 @@
Adminer 3.3.4-dev:
PostgreSQL over PDO: connect if the eponymous database does not exist (bug #3391619)

Adminer 3.3.3 (released 2011-08-12):
Highlight checked rows
Titles of links in database overview and navigation
Expand Down

0 comments on commit daf60b2

Please sign in to comment.