From b7af6b361af171b2f508417e979d1feb7072a609 Mon Sep 17 00:00:00 2001 From: dialogik <dialogik@users.noreply.github.com> Date: Tue, 6 Oct 2015 15:05:57 +0200 Subject: [PATCH] Set trusted.url.domains default to array() See https://github.com/simplesamlphp/simplesamlphp/issues/265 --- config-templates/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-templates/config.php b/config-templates/config.php index 7a8db7ff2..622ae0950 100644 --- a/config-templates/config.php +++ b/config-templates/config.php @@ -834,6 +834,6 @@ $config = array( * Example: * 'trusted.url.domains' => array('sp.example.com', 'app.example.com'), */ - 'trusted.url.domains' => null, + 'trusted.url.domains' => array(), ); -- GitLab