Skip to content
Snippets Groups Projects
Commit e9a71384 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Merge pull request #266 from dialogik/patch-1

Set trusted.url.domains default to array()
parents 42d5fff9 e5daae77
No related branches found
No related tags found
No related merge requests found
...@@ -834,6 +834,6 @@ $config = array( ...@@ -834,6 +834,6 @@ $config = array(
* Example: * Example:
* 'trusted.url.domains' => array('sp.example.com', 'app.example.com'), * 'trusted.url.domains' => array('sp.example.com', 'app.example.com'),
*/ */
'trusted.url.domains' => null, 'trusted.url.domains' => array(),
); );
...@@ -179,3 +179,5 @@ The following modules will no longer be shipped with the next version of SimpleS ...@@ -179,3 +179,5 @@ The following modules will no longer be shipped with the next version of SimpleS
* `openidProvider` * `openidProvider`
* `saml2debug` * `saml2debug`
* `themefeidernd` * `themefeidernd`
The default value for trusted.url.domains in the config template has been changed from NULL to an empty array(), this sets a higher grade of default security. Resetting to NULL will re-allow untrusted routing.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment