From f1990bf0596eab8fc03a8793c24f5dcf6b8f3561 Mon Sep 17 00:00:00 2001 From: John Bafford Date: Wed, 1 May 2013 18:44:29 -0400 Subject: [PATCH] Fix the namespace paths in reference/constraints/UserPassword.html The backslashes in the namespace were not escaped, and so did not show up in the generated output. --- reference/constraints/UserPassword.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/constraints/UserPassword.rst b/reference/constraints/UserPassword.rst index dc0dfcab277..c7e1b3ce5ca 100644 --- a/reference/constraints/UserPassword.rst +++ b/reference/constraints/UserPassword.rst @@ -7,10 +7,10 @@ UserPassword .. note:: Since Symfony 2.2, the `UserPassword*` classes in the - `Symfony\Component\Security\Core\Validator\Constraint` namespace are + `Symfony\\Component\\Security\\Core\\Validator\\Constraint` namespace are deprecated and will be removed in Symfony 2.3. Please use the `UserPassword*` classes in the - `Symfony\Component\Security\Core\Validator\Constraints` namespace instead. + `Symfony\\Component\\Security\\Core\Validator\\Constraints` namespace instead. This validates that an input value is equal to the current authenticated user's password. This is useful in a form where a user can change his password,