Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 441526f

Browse files
committed
bug #687 make config_dev.yml a valid YML file (jdespatis)
This PR was submitted for the master branch but it was merged into the 2.5 branch instead (closes #687). Discussion ---------- make config_dev.yml a valid YML file `%..%` must be wrapped by quotes, or YML file is not valid! Commits ------- 848b095 make config_dev.yml a valid YML file
2 parents 29e764d + 848b095 commit 441526f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/config/config_dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ framework:
88
profiler: { only_exceptions: false }
99

1010
web_profiler:
11-
toolbar: %debug_toolbar%
12-
intercept_redirects: %debug_redirects%
11+
toolbar: "%debug_toolbar%"
12+
intercept_redirects: "%debug_redirects%"
1313

1414
monolog:
1515
handlers:
@@ -30,7 +30,7 @@ monolog:
3030
# level: info
3131

3232
assetic:
33-
use_controller: %use_assetic_controller%
33+
use_controller: "%use_assetic_controller%"
3434

3535
#swiftmailer:
3636
# delivery_address: me@example.com

0 commit comments

Comments
 (0)