Skip to content

Commit

Permalink
DB-authentication fix for postgres7.
Browse files Browse the repository at this point in the history
Fix bud id 1740
  • Loading branch information
paca70 committed Sep 24, 2004
1 parent 8c58973 commit 78a0c06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion auth/db/lib.php
Expand Up @@ -12,7 +12,9 @@ function auth_user_login ($username, $password) {
// two databases of the same kind ... it seems to get confused when trying to access
// the first database again, after having accessed the second.
// The following hack will make the database explicit which keeps it happy
$CFG->prefix = "$CFG->dbname.$CFG->prefix";
if ($CFG->dbtype != 'postgres7') {
$CFG->prefix = "$CFG->dbname.$CFG->prefix";
}

// Connect to the external database
$authdb = &ADONewConnection($CFG->auth_dbtype);
Expand Down

0 comments on commit 78a0c06

Please sign in to comment.