Fixing default value of contain

This commit is contained in:
Tigran Gabrielyan 2012-04-04 19:06:54 -07:00
parent bf628c493c
commit 3c4087da4f
3 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@ abstract class BaseAuthenticate {
'userModel' => 'User',
'scope' => array(),
'recursive' => 0,
'contain' => array(),
'contain' => null,
);
/**

View file

@ -63,7 +63,7 @@ class BasicAuthenticate extends BaseAuthenticate {
'userModel' => 'User',
'scope' => array(),
'recursive' => 0,
'contain' => array(),
'contain' => null,
'realm' => '',
);

View file

@ -81,7 +81,7 @@ class DigestAuthenticate extends BaseAuthenticate {
'userModel' => 'User',
'scope' => array(),
'recursive' => 0,
'contain' => array(),
'contain' => null,
'realm' => '',
'qop' => 'auth',
'nonce' => '',