Skip to content

Commit 7c1c926

Browse files
committed
bug #6482 fixed wrong secret string in array examples (OskarStark)
This PR was submitted for the 2.7 branch but it was merged into the 2.3 branch instead (closes #6482). Discussion ---------- fixed wrong secret string in array examples | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.7+ | Fixed tickets | -- Looks like this is a copy paste error from older doc versions where the string `$ecret` was used. This needs to be applied to all branches from 2.7 on Check the old version of the docs here where the `$ecret` string is used: http://symfony.com/doc/2.6/cookbook/bundles/configuration.html Commits ------- f7950ab fixed wrong secret string in array examples
2 parents b2df969 + f7950ab commit 7c1c926

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cookbook/bundles/configuration.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ For the configuration example in the previous section, the array passed to your
139139
array(
140140
'twitter' => array(
141141
'client_id' => 123,
142-
'client_secret' => '$secret',
142+
'client_secret' => 'your_secret',
143143
),
144144
),
145145
)
@@ -155,7 +155,7 @@ beneath it, the incoming array might look like this::
155155
array(
156156
'twitter' => array(
157157
'client_id' => 123,
158-
'client_secret' => '$secret',
158+
'client_secret' => 'your_secret',
159159
),
160160
),
161161
// values from config_dev.yml

0 commit comments

Comments
 (0)