From 3e31c85df41985e4bc1fa1da045c02e96043ea2a Mon Sep 17 00:00:00 2001 From: "godzilla80@gmx.net" <> Date: Thu, 14 May 2009 07:34:16 +0000 Subject: TPgsqlTableInfo::getTableFullName() return void if no schema given --- HISTORY | 1 + framework/Data/Common/Pgsql/TPgsqlTableInfo.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 3807a634..76871038 100644 --- a/HISTORY +++ b/HISTORY @@ -21,6 +21,7 @@ Bug: Issue#154 - Bug in TOracleMetaData.php causing SqlMap not work with Oracle BUG: URL wildcard patterns didn't work with subfolders BUG: TDbLogRoute::createDbTable: add AUTO_INCREMENT attribute to log_id column if driver is mysql (Yves) BUG: Ensure rendering of clientID in TActivePanel (Christophe) +BUG: TPgsqlTableInfo::getTableFullName() return void if no schema given BUG/ENH: TSqlMapCacheModel now consider tag as described in doc (sqlmap.pdf) - valid attributes are duration in sec or seconds, minutes, hours, days (Yves) BUG/ENH: Issue#112 - TXmlDocument add support for namespaces: for backward compatibility only if SimpleXml installed (Yves) ENH: Issue#115 - Registry for Prado generated clientside counterparts of serverside controls (Yves Berkholz) diff --git a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php b/framework/Data/Common/Pgsql/TPgsqlTableInfo.php index 2447c141..1a634c19 100644 --- a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php +++ b/framework/Data/Common/Pgsql/TPgsqlTableInfo.php @@ -42,7 +42,7 @@ class TPgsqlTableInfo extends TDbTableInfo if(($schema=$this->getSchemaName())!==null) return $schema.'.'.$this->getTableName(); else - $this->getTableName(); + return $this->getTableName(); } /** -- cgit v1.2.3