From a99c211f76283aca759bfec08e48b551b2ff5195 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Sat, 5 Dec 2009 05:42:40 +0000 Subject: [PATCH] MINOR Fixed misspelled acronym for "Cross-site request forgery" git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@94420 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/Form.php b/forms/Form.php index 45cfac743..7c4eb1380 100755 --- a/forms/Form.php +++ b/forms/Form.php @@ -225,7 +225,7 @@ class Form extends RequestHandler { $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."); } }