Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs for configuring before/after a specific config file #7865

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _config/i18n.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Name: basei18n
Before: '/i18n'
Before: '#defaulti18n'
---
SilverStripe\i18n\Data\Sources:
module_priority:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Make sure that after you have modified the `routes.yml` file, that you clear you
```yml
---
Name: mysiteroutes
After: framework/routes#coreroutes
After: framework/_config/routes#coreroutes
---
SilverStripe\Control\Director:
rules:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/02_Developer_Guides/02_Controllers/02_Routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ These routes by standard, go into a `routes.yml` file in your applications `_con
```yml
---
Name: mysiteroutes
After: framework/routes#coreroutes
After: framework/_config/routes#coreroutes
---
SilverStripe\Control\Director:
rules:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/02_Developer_Guides/13_i18n/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ To create a custom module order, you need to specify a config fragment that inse
```yml
---
Name: customi18n
Before: 'defaulti18n'
Before: '#defaulti18n'
---
SilverStripe\i18n\i18n:
module_priority:
Expand Down