Fixing calling of method from incorrect object in DboOracle::describe(). Fixes #21.

This commit is contained in:
jperras 2009-08-23 17:52:40 -04:00
parent 6f8f4c5a05
commit e9cfb66424

View file

@ -465,7 +465,7 @@ class DboOracle extends DboSource {
* @access public
*/
function describe(&$model) {
$table = $model->fullTableName($model, false);
$table = $this->fullTableName($model, false);
if (!empty($model->sequence)) {
$this->_sequenceMap[$table] = $model->sequence;