diff --git a/core/lib/Drupal/Core/Access/CsrfAccessCheck.php b/core/lib/Drupal/Core/Access/CsrfAccessCheck.php index f3f6ee0..d6ba3a8 100644 --- a/core/lib/Drupal/Core/Access/CsrfAccessCheck.php +++ b/core/lib/Drupal/Core/Access/CsrfAccessCheck.php @@ -13,11 +13,11 @@ use Symfony\Component\HttpFoundation\Request; /** - * Allows access to routes to be controlled by a '_csrf' parameter. + * Allows access to routes to be controlled by a '_csrf_token' parameter. * * To use this check, add a "token" GET parameter to URLs of which the value is * a token generated by \Drupal::csrfToken()->get() using the same value as the - * "_csrf" parameter in the route. + * "_csrf_token" parameter in the route. */ class CsrfAccessCheck implements StaticAccessCheckInterface {