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."); } }