Skip to content
Snippets Groups Projects
Commit 8f1d8788 authored by voserwin's avatar voserwin Committed by Tim van Dijen
Browse files

Update SP.php (#1433)

parent 07d0fa49
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ Released TBD ...@@ -13,6 +13,7 @@ Released TBD
* Fixed a bug in the Artifact Resolution Service (#1428) * Fixed a bug in the Artifact Resolution Service (#1428)
* Fixed compatibility with Composer pre 1.8.5 (Debian 10) (#1427) * Fixed compatibility with Composer pre 1.8.5 (Debian 10) (#1427)
* Updated npm dependencies up to February 1, 2021 * Updated npm dependencies up to February 1, 2021
* Fixed a bug where it was impossible to set WantAssertionsSigned=true on SP-metadata (#1433)
### memcacheMonitor ### memcacheMonitor
* Fix a bug in the Twig-template that causes an exception on newer Twig-versions * Fix a bug in the Twig-template that causes an exception on newer Twig-versions
......
...@@ -267,7 +267,7 @@ class SP extends \SimpleSAML\Auth\Source ...@@ -267,7 +267,7 @@ class SP extends \SimpleSAML\Auth\Source
} }
// add signature options // add signature options
if ($this->metadata->hasValue('WantAssertiosnsSigned')) { if ($this->metadata->hasValue('WantAssertionsSigned')) {
$metadata['saml20.sign.assertion'] = $this->metadata->getBoolean('WantAssertionsSigned'); $metadata['saml20.sign.assertion'] = $this->metadata->getBoolean('WantAssertionsSigned');
} }
if ($this->metadata->hasValue('redirect.sign')) { if ($this->metadata->hasValue('redirect.sign')) {
......
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