From 35925dae84fa836abe329a4bb7f74142489bbb95 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Fri, 31 May 2019 07:55:10 +0200 Subject: [PATCH] Fix `validation.not_compromised_password` option default --- reference/configuration/framework.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index ef0deea0494..610d97836c7 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -2147,13 +2147,13 @@ has been compromised in a data breach. enabled ....... -**type**: ``boolean`` **default**: ``false`` +**type**: ``boolean`` **default**: ``true`` .. versionadded:: 4.3 The ``enabled`` option was introduced in Symfony 4.3. -If you set this option to ``true``, no HTTP requests will be made and the given +If you set this option to ``false``, no HTTP requests will be made and the given password will be considered valid. This is useful when you don't want or can't make HTTP requests, such as in ``dev`` and ``test`` environments or in continuous integration servers.