Skip to content
Permalink
Browse files Browse the repository at this point in the history
Patch security vulnerability.
  • Loading branch information
Matthew Robitaille committed Nov 10, 2014
1 parent 72e8ac5 commit 6b28136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/filters.php
Expand Up @@ -83,7 +83,7 @@

Route::filter('csrf', function()
{
if (Session::token() != Input::get('_token'))
if (Session::token() !== Input::get('_token'))
{
throw new Illuminate\Session\TokenMismatchException;
}
Expand Down

0 comments on commit 6b28136

Please sign in to comment.