summaryrefslogtreecommitdiff
path: root/framework/Data/TDataSourceConfig.php
diff options
context:
space:
mode:
authorChristophe.Boulain <>2009-03-07 09:33:22 +0000
committerChristophe.Boulain <>2009-03-07 09:33:22 +0000
commitceeea859d99a37b59272652f3a3ebccdb7674806 (patch)
treed5679ecbc373e4a84d6f43065fecf0885268b8a8 /framework/Data/TDataSourceConfig.php
parent0fe16971665d11ebc57267938a7a4e4bf6762a78 (diff)
Fixed Issue 127
Diffstat (limited to 'framework/Data/TDataSourceConfig.php')
-rw-r--r--framework/Data/TDataSourceConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/TDataSourceConfig.php b/framework/Data/TDataSourceConfig.php
index a7b8dec2..9a81ff8c 100644
--- a/framework/Data/TDataSourceConfig.php
+++ b/framework/Data/TDataSourceConfig.php
@@ -148,7 +148,7 @@ class TDataSourceConfig extends TModule
if($conn instanceof TDbConnection)
return $conn;
else if($conn instanceof TDataSourceConfig)
- return $conn->_conn;
+ return $conn->getDbConnection();
else
throw new TConfigurationException('datasource_dbconnection_invalid',$id);
}