From d0c3d657225b420a91ef48d5487dff82dc309fcf Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 3 Nov 2011 09:19:23 -0500 Subject: [PATCH] Fix CSRF token bug. --- laravel/session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/session.php b/laravel/session.php index b4d8cd5b..9f146bb0 100644 --- a/laravel/session.php +++ b/laravel/session.php @@ -41,9 +41,9 @@ class Session { // Form 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. - $token = Str::random(40); + $csrf_token = Str::random(40); - static::$session = array('id' => Str::random(40), 'data' => compact('token')); + static::$session = array('id' => Str::random(40), 'data' => compact('csrf_token')); } }