Browse Source

fixed DB quoting typo

tags/2.0.0-beta
Alexander Makarov 12 years ago
parent
commit
3e2e4afa85
  1. 2
      framework/db/Connection.php

2
framework/db/Connection.php

@ -522,7 +522,7 @@ class Connection extends Component
if (isset($matches[3])) {
return $db->quoteColumnName($matches[3]);
} else {
return str_replace('%', $this->tablePrefix, $db->quoteTableName($matches[2]));
return str_replace('%', $db->tablePrefix, $db->quoteTableName($matches[2]));
}
}, $sql);
}

Loading…
Cancel
Save