Skip to content

Commit

Permalink
give empty array as the default for trusted.url.domains
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Jul 16, 2024
1 parent 3551584 commit ae1a6a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerbuild/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

use Sil\PhpEnv\Env;
use Sil\PhpEnv\EnvVarNotFoundException;
use SimpleSAML\Utils;
use SimpleSAML\Module\material\MaterialController;
use SimpleSAML\Utils;

$httpUtils = new Utils\HTTP();

Expand Down Expand Up @@ -71,7 +71,7 @@
$PASSWORD_CHANGE_URL = Env::get('PASSWORD_CHANGE_URL');
$PASSWORD_FORGOT_URL = Env::get('PASSWORD_FORGOT_URL');
$HELP_CENTER_URL = Env::get('HELP_CENTER_URL');
$TRUSTED_URL_DOMAINS = Env::getArray('TRUSTED_URL_DOMAINS', null);
$TRUSTED_URL_DOMAINS = Env::getArray('TRUSTED_URL_DOMAINS', []);

$config = [

Expand Down

0 comments on commit ae1a6a1

Please sign in to comment.