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

bugfix: s/FedConst/Constants/g

parent 103f08d9
No related branches found
No related tags found
No related merge requests found
...@@ -17,10 +17,10 @@ class TokenTypesOffered ...@@ -17,10 +17,10 @@ class TokenTypesOffered
*/ */
public static function appendXML(\DOMElement $parent) public static function appendXML(\DOMElement $parent)
{ {
$e = $parent->ownerDocument->createElementNS(FedConst::NS_FED, 'fed:TokenTypesOffered'); $e = $parent->ownerDocument->createElementNS(Constants::NS_FED, 'fed:TokenTypesOffered');
$parent->appendChild($e); $parent->appendChild($e);
$tokentype = $parent->ownerDocument->createElementNS(FedConst::NS_FED, 'fed:TokenType'); $tokentype = $parent->ownerDocument->createElementNS(Constants::NS_FED, 'fed:TokenType');
$tokentype->setAttribute('Uri', 'urn:oasis:names:tc:SAML:1.0:assertion'); $tokentype->setAttribute('Uri', 'urn:oasis:names:tc:SAML:1.0:assertion');
$e->appendChild($tokentype); $e->appendChild($tokentype);
......
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