Skip to content

Commit

Permalink
MINOR Fixed misspelled acronym for "Cross-site request forgery" (from…
Browse files Browse the repository at this point in the history
… r94420)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@95608 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sean Harvey committed Dec 16, 2009
1 parent 3665c59 commit 99c4609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forms/Form.php
Expand Up @@ -225,7 +225,7 @@ function httpSubmission($request) {
$securityID = Session::get('SecurityID');

if(!$securityID || !isset($vars['SecurityID']) || $securityID != $vars['SecurityID']) {
$this->httpError(400, "SecurityID doesn't match, possible CRSF attack.");
$this->httpError(400, "SecurityID doesn't match, possible CSRF attack.");
}
}

Expand Down

0 comments on commit 99c4609

Please sign in to comment.