1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-18 20:02:20 +02:00
This commit is contained in:
David Grudl
2007-04-25 06:55:10 +00:00
parent 799dfcc65e
commit 7c693a26fb
2 changed files with 6 additions and 7 deletions

View File

@@ -54,8 +54,7 @@ class DibiPdoDriver extends DibiDriver
protected function connect()
{
$config = $this->config;
return new PDO($config['dsn'], $config['username'], $config['password']);
return new PDO($this->config['dsn'], $this->config['username'], $this->config['password']);
}