summaryrefslogtreecommitdiff
path: root/framework/Data/Common
diff options
context:
space:
mode:
authormikl <>2008-04-25 16:35:44 +0000
committermikl <>2008-04-25 16:35:44 +0000
commit6c51785e6ab1ae1589f71c4ec79f3b03aee6c824 (patch)
tree6986ba3c2a624417dabf7b28fdee893a53a7a8eb /framework/Data/Common
parentb0b2ab42bbe6d781ca007fdee7ea60ea83e9ba11 (diff)
Fix #839: Typo in TMysqlTableInfo
Diffstat (limited to 'framework/Data/Common')
-rw-r--r--framework/Data/Common/Mysql/TMysqlTableInfo.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Data/Common/Mysql/TMysqlTableInfo.php b/framework/Data/Common/Mysql/TMysqlTableInfo.php
index 3584bb3b..1e902f92 100644
--- a/framework/Data/Common/Mysql/TMysqlTableInfo.php
+++ b/framework/Data/Common/Mysql/TMysqlTableInfo.php
@@ -40,7 +40,7 @@ class TMysqlTableInfo extends TDbTableInfo
public function getTableFullName()
{
if(($schema=$this->getSchemaName())!==null)
- return '`'.$schema.'`.`'.$this->getTableName();
+ return '`'.$schema.'`.`'.$this->getTableName().'`';
else
return '`'.$this->getTableName().'`';
}
@@ -56,4 +56,4 @@ class TMysqlTableInfo extends TDbTableInfo
}
}
-?> \ No newline at end of file
+?>