Skip to content

Commit

Permalink
Patch security vulnerability.
Browse files Browse the repository at this point in the history
  • 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
Original file line number Diff line number Diff line change
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.