mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #3441 from dakota/patch-1
Fixes issue with Sql Server driver when loading fixtures
This commit is contained in:
commit
23519e1988
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ class Sqlserver extends DboSource {
|
|||
}
|
||||
|
||||
$fields = array();
|
||||
$schema = $model->schemaName;
|
||||
$schema = is_object($model) ? $model->schemaName : false;
|
||||
|
||||
$cols = $this->_execute(
|
||||
"SELECT
|
||||
|
|
Loading…
Reference in a new issue