diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-09 14:31:02 -0500 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-09 14:31:02 -0500 |
commit | 3eb62fffbb324147f6dd68da4c3427fabfbdbe80 (patch) | |
tree | afd60f80724e089b8cd648f0c17927d38161e57c /Core | |
parent | 34e648cf6cc3c9deb2aa0adf57cb17bddf7da57c (diff) | |
parent | 231aafdaf4c9abbc812139bd6f909008fec91cd7 (diff) | |
download | symfony-security-3eb62fffbb324147f6dd68da4c3427fabfbdbe80.zip symfony-security-3eb62fffbb324147f6dd68da4c3427fabfbdbe80.tar.gz symfony-security-3eb62fffbb324147f6dd68da4c3427fabfbdbe80.tar.bz2 |
Merge branch '2.8' into 3.0
* 2.8:
limited the maximum length of a submitted username
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Security.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Core/Security.php b/Core/Security.php index 14d32f8..84cc77d 100644 --- a/Core/Security.php +++ b/Core/Security.php @@ -21,4 +21,5 @@ final class Security const ACCESS_DENIED_ERROR = '_security.403_error'; const AUTHENTICATION_ERROR = '_security.last_error'; const LAST_USERNAME = '_security.last_username'; + const MAX_USERNAME_LENGTH = 4096; } |