Change csrf_token constant.

This commit is contained in:
Taylor Otwell
2011-11-23 10:42:42 -06:00
parent d82f1d40c0
commit b7b5bc6938

View File

@@ -41,7 +41,7 @@ class Payload {
*
* @var string
*/
const token = 'csrf_token';
const csrf_token = 'csrf_token';
/**
* Create a new session payload instance.
@@ -82,9 +82,9 @@ class Payload {
// class and the "csrf" filter to protect the application from cross-site
// request forgery attacks. The token is simply a long, random string
// which should be posted with each request.
if ( ! $this->has(Payload::token))
if ( ! $this->has(Payload::csrf_token))
{
$this->put(Payload::token, Str::random(40));
$this->put(Payload::csrf_token, Str::random(40));
}
}
@@ -251,7 +251,7 @@ class Payload {
*/
public function token()
{
return $this->get(Payload::token);
return $this->get(Payload::csrf_token);
}
/**
@@ -324,4 +324,4 @@ class Payload {
Cookie::put($cookie, $this->session['id'], $minutes, $path, $domain, $secure);
}
}
}