From 6c51785e6ab1ae1589f71c4ec79f3b03aee6c824 Mon Sep 17 00:00:00 2001 From: mikl <> Date: Fri, 25 Apr 2008 16:35:44 +0000 Subject: Fix #839: Typo in TMysqlTableInfo --- framework/Data/Common/Mysql/TMysqlTableInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework') 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 +?> -- cgit v1.2.3