mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing default value of contain
This commit is contained in:
parent
bf628c493c
commit
3c4087da4f
3 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ abstract class BaseAuthenticate {
|
|||
'userModel' => 'User',
|
||||
'scope' => array(),
|
||||
'recursive' => 0,
|
||||
'contain' => array(),
|
||||
'contain' => null,
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
@ -63,7 +63,7 @@ class BasicAuthenticate extends BaseAuthenticate {
|
|||
'userModel' => 'User',
|
||||
'scope' => array(),
|
||||
'recursive' => 0,
|
||||
'contain' => array(),
|
||||
'contain' => null,
|
||||
'realm' => '',
|
||||
);
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ class DigestAuthenticate extends BaseAuthenticate {
|
|||
'userModel' => 'User',
|
||||
'scope' => array(),
|
||||
'recursive' => 0,
|
||||
'contain' => array(),
|
||||
'contain' => null,
|
||||
'realm' => '',
|
||||
'qop' => 'auth',
|
||||
'nonce' => '',
|
||||
|
|
Loading…
Reference in a new issue