mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
Fixing calling of method from incorrect object in DboOracle::describe(). Fixes #21.
This commit is contained in:
parent
6f8f4c5a05
commit
e9cfb66424
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ class DboOracle extends DboSource {
|
||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
function describe(&$model) {
|
function describe(&$model) {
|
||||||
$table = $model->fullTableName($model, false);
|
$table = $this->fullTableName($model, false);
|
||||||
|
|
||||||
if (!empty($model->sequence)) {
|
if (!empty($model->sequence)) {
|
||||||
$this->_sequenceMap[$table] = $model->sequence;
|
$this->_sequenceMap[$table] = $model->sequence;
|
||||||
|
|
Loading…
Add table
Reference in a new issue