Skip to content

Commit e6d4c93

Browse files
committed
bug #5768 Removed "http_basic" config from the login form cookbook (javiereguiluz)
This PR was merged into the 2.3 branch. Discussion ---------- Removed "http_basic" config from the login form cookbook | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | #5763 Commits ------- d019f83 Removed an outdate paragraph f73133d Removed "http_basic" config from the login form cookbook
2 parents ea2503c + d019f83 commit e6d4c93

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

cookbook/security/form_login_setup.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ In this entry, you'll build a traditional login form. Of course, when the
1212
user logs in, you can load your users from anywhere - like the database.
1313
See :ref:`security-user-providers` for details.
1414

15-
This chapter assumes that you've followed the beginning of the
16-
:doc:`security chapter </book/security>` and have ``http_basic`` authentication
17-
working properly.
18-
1915
First, enable form login under your firewall:
2016

2117
.. configuration-block::
@@ -29,7 +25,6 @@ First, enable form login under your firewall:
2925
firewalls:
3026
default:
3127
anonymous: ~
32-
http_basic: ~
3328
form_login:
3429
login_path: /login
3530
check_path: /login_check
@@ -47,7 +42,6 @@ First, enable form login under your firewall:
4742
<config>
4843
<firewall name="default">
4944
<anonymous />
50-
<http-basic />
5145
<form-login login-path="/login" check-path="/login_check" />
5246
</firewall>
5347
</config>
@@ -60,7 +54,6 @@ First, enable form login under your firewall:
6054
'firewalls' => array(
6155
'default' => array(
6256
'anonymous' => null,
63-
'http_basic' => null,
6457
'form_login' => array(
6558
'login_path' => '/login',
6659
'check_path' => '/login_check',

0 commit comments

Comments
 (0)