diff options
| author | Matt Friedman <maf675@gmail.com> | 2015-12-07 13:11:22 -0800 |
|---|---|---|
| committer | Matt Friedman <maf675@gmail.com> | 2015-12-07 13:11:22 -0800 |
| commit | d9d89cad94eada62e900a012046b8d45c5aa3129 (patch) | |
| tree | 4274286fca6fee80764f95cdd310ecf1080a391e /phpBB/config/default/routing | |
| parent | f14a9b70694ef1ff575e7db46fdcdec8c9bc87e4 (diff) | |
| download | forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.gz forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.bz2 forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.xz forums-d9d89cad94eada62e900a012046b8d45c5aa3129.zip | |
[ticket/14247] Use quotes around @ and % strings in YAML
PHPBB3-14247
Diffstat (limited to 'phpBB/config/default/routing')
| -rw-r--r-- | phpBB/config/default/routing/report.yml | 4 | ||||
| -rw-r--r-- | phpBB/config/default/routing/routing.yml | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/config/default/routing/report.yml b/phpBB/config/default/routing/report.yml index dbe2d853c0..c386770e42 100644 --- a/phpBB/config/default/routing/report.yml +++ b/phpBB/config/default/routing/report.yml @@ -3,7 +3,7 @@ phpbb_report_pm_controller: methods: [GET, POST] defaults: _controller: phpbb.report.controller:handle - mode: "pm" + mode: 'pm' requirements: id: \d+ @@ -12,6 +12,6 @@ phpbb_report_post_controller: methods: [GET, POST] defaults: _controller: phpbb.report.controller:handle - mode: "post" + mode: 'post' requirements: id: \d+ diff --git a/phpBB/config/default/routing/routing.yml b/phpBB/config/default/routing/routing.yml index 073984841a..f381f024ad 100644 --- a/phpBB/config/default/routing/routing.yml +++ b/phpBB/config/default/routing/routing.yml @@ -5,11 +5,11 @@ # defaults: { _controller: foo_sevice:method } # # The above will be accessed via app.php?controller=foo and it will -# instantiate the "foo_service" service and call the "method" method. +# instantiate the 'foo_service' service and call the 'method' method. # phpbb_feed_routing: - resource: "feed.yml" + resource: feed.yml prefix: /feed phpbb_feed_index: @@ -17,8 +17,8 @@ phpbb_feed_index: defaults: { _controller: phpbb.feed.controller:overall } phpbb_help_routing: - resource: "help.yml" + resource: help.yml prefix: /help phpbb_report_routing: - resource: "report.yml" + resource: report.yml |
