Skip to content

Commit

Permalink
Reverted the change to quote the table name.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbasso committed Feb 26, 2011
1 parent 63d700a commit 731cc7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/model/datasources/dbo_source.php
Expand Up @@ -963,7 +963,7 @@ public function fullTableName($model, $quote = true) {
$table = strval($model);
}
if ($quote) {
return $this->startQuote . $table . $this->endQuote;
return $this->name($table);
}
return $table;
}
Expand Down

0 comments on commit 731cc7b

Please sign in to comment.