Commit 45532e50 authored by Alexandru Patranescu's avatar Alexandru Patranescu Committed by Benjamin Eberlei

fixed quote problem

parent 22707e07
...@@ -155,9 +155,9 @@ class Schema extends AbstractAsset ...@@ -155,9 +155,9 @@ class Schema extends AbstractAsset
*/ */
private function getFullQualifiedAssetName($name) private function getFullQualifiedAssetName($name)
{ {
if ($this->isQuoted($name)) { if ($this->isQuoted($name)) {
$name = $this->trimQuotes($name); $name = $this->trimQuotes($name);
} }
if (strpos($name, ".") === false) { if (strpos($name, ".") === false) {
$name = $this->getName() . "." . $name; $name = $this->getName() . "." . $name;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment