summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgodzilla80@gmx.net <>2009-05-14 07:34:16 +0000
committergodzilla80@gmx.net <>2009-05-14 07:34:16 +0000
commit3e31c85df41985e4bc1fa1da045c02e96043ea2a (patch)
treeca9044594f3459f98860f1aa608cb39321e2df4e
parent7c6ca9a1d405826acc53ca9b1d61a748fb477180 (diff)
TPgsqlTableInfo::getTableFullName() return void if no schema given
-rw-r--r--HISTORY1
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlTableInfo.php2
2 files changed, 2 insertions, 1 deletions
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 <flushInterval> 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();
}
/**