Change csrf_token constant.

This commit is contained in:
Taylor Otwell 2011-11-23 10:42:42 -06:00
parent d82f1d40c0
commit b7b5bc6938
1 changed files with 5 additions and 5 deletions

View File

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