removing some extra whitespace and removing an old @ from dbo_mysqli

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3282 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
gwoo 2006-07-22 15:09:43 +00:00
parent c19dbc8806
commit ceb72b3415

View file

@ -414,7 +414,7 @@ class DboMysqli extends DboSource {
$resultRow = array();
$i = 0;
foreach ($row as $index => $field) {
@list($table, $column) = $this->map[$index];
list($table, $column) = $this->map[$index];
$resultRow[$table][$column] = $row[$index];
$i++;
}