1
0
mirror of synced 2025-01-17 22:11:41 +03:00

Merge pull request #75 from joshiausdemwald/DatabaseDriver_Corrections

Suppressed an "undefined variable" notice by adding initialization code
This commit is contained in:
Guilherme Blanco 2011-06-20 10:24:37 -07:00
commit 2caf0fff60

View File

@ -110,6 +110,8 @@ class DatabaseDriver implements Driver
return;
}
$tables = array();
foreach ($this->_sm->listTableNames() as $tableName) {
$tables[$tableName] = $this->_sm->listTableDetails($tableName);
}