Skip to content

Commit

Permalink
Fixing default value of contain
Browse files Browse the repository at this point in the history
  • Loading branch information
tigrang committed Apr 5, 2012
1 parent bf628c4 commit 3c4087d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Auth/BaseAuthenticate.php
Expand Up @@ -42,7 +42,7 @@ abstract class BaseAuthenticate {
'userModel' => 'User', 'userModel' => 'User',
'scope' => array(), 'scope' => array(),
'recursive' => 0, 'recursive' => 0,
'contain' => array(), 'contain' => null,
); );


/** /**
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Auth/BasicAuthenticate.php
Expand Up @@ -63,7 +63,7 @@ class BasicAuthenticate extends BaseAuthenticate {
'userModel' => 'User', 'userModel' => 'User',
'scope' => array(), 'scope' => array(),
'recursive' => 0, 'recursive' => 0,
'contain' => array(), 'contain' => null,
'realm' => '', 'realm' => '',
); );


Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Auth/DigestAuthenticate.php
Expand Up @@ -81,7 +81,7 @@ class DigestAuthenticate extends BaseAuthenticate {
'userModel' => 'User', 'userModel' => 'User',
'scope' => array(), 'scope' => array(),
'recursive' => 0, 'recursive' => 0,
'contain' => array(), 'contain' => null,
'realm' => '', 'realm' => '',
'qop' => 'auth', 'qop' => 'auth',
'nonce' => '', 'nonce' => '',
Expand Down

0 comments on commit 3c4087d

Please sign in to comment.