diff --git a/Controller/Component/Auth/CookieAuthenticate.php b/Controller/Component/Auth/CookieAuthenticate.php index bc4958f..b6d3dbe 100644 --- a/Controller/Component/Auth/CookieAuthenticate.php +++ b/Controller/Component/Auth/CookieAuthenticate.php @@ -1,7 +1,6 @@ 'User', * 'scope' => array('User.active' => 1), * 'crypt' => 'rijndael', // Defaults to rijndael(safest), optionally set to 'cipher' if required - * 'cookie' => array( - * 'name' => 'RememberMe', - * 'time' => '+2 weeks', - * ) * ) * ) * }}} @@ -38,11 +33,6 @@ class CookieAuthenticate extends BaseAuthenticate { * @param array $settings Settings */ public function __construct(ComponentCollection $collection, $settings) { - $this->settings['cookie'] = array( - 'name' => 'RememberMe', - 'time' => '+2 weeks', - 'base' => Router::getRequest()->base - ); $this->settings['crypt'] = 'rijndael'; parent::__construct($collection, $settings); }