diff --git a/cake/libs/model/datasources/dbo_source.php b/cake/libs/model/datasources/dbo_source.php index 38a172401b7..b1eb000f281 100755 --- a/cake/libs/model/datasources/dbo_source.php +++ b/cake/libs/model/datasources/dbo_source.php @@ -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; }