@@ -556,11 +556,11 @@ $advancedSettings = array (
556
556
557
557
// If true, Destination URL should strictly match to the address to
558
558
// which the response has been sent.
559
- // Notice that if 'relaxDestinationValidation' is true an empty Destintation
559
+ // Notice that if 'relaxDestinationValidation' is true an empty Destination
560
560
// will be accepted.
561
561
'destinationStrictlyMatches' => false,
562
562
563
- // If true, SAMLResponses with an InResponseTo value will be rejectd if not
563
+ // If true, SAMLResponses with an InResponseTo value will be rejected if not
564
564
// AuthNRequest ID provided to the validation method.
565
565
'rejectUnsolicitedResponsesWithInResponseTo' => false,
566
566
@@ -600,7 +600,7 @@ $advancedSettings = array (
600
600
),
601
601
602
602
// Organization information template, the info in en_US lang is
603
- // recomended , add more if required.
603
+ // v , add more if required.
604
604
'organization' => array (
605
605
'en-US' => array(
606
606
'name' => '',
@@ -947,7 +947,7 @@ $auth->processSLO(false, $requestID);
947
947
$errors = $auth->getErrors();
948
948
949
949
if (empty($errors)) {
950
- echo 'Sucessfully logged out';
950
+ echo 'Successfully logged out';
951
951
} else {
952
952
echo implode(', ', $errors);
953
953
}
@@ -1154,7 +1154,7 @@ if (isset($_GET['sso'])) { // SSO action. Will send an AuthNRequest to the I
1154
1154
echo '<p >', implode(', ', $errors), '</p >';
1155
1155
}
1156
1156
// This check if the response was
1157
- if (!$auth->isAuthenticated()) { // sucessfully validated and the user
1157
+ if (!$auth->isAuthenticated()) { // successfully validated and the user
1158
1158
echo "<p >Not authenticated</p >"; // data retrieved or not
1159
1159
exit();
1160
1160
}
@@ -1169,7 +1169,7 @@ if (isset($_GET['sso'])) { // SSO action. Will send an AuthNRequest to the I
1169
1169
$auth->processSLO(); // Process the Logout Request & Logout Response
1170
1170
$errors = $auth->getErrors(); // Retrieves possible validation errors
1171
1171
if (empty($errors)) {
1172
- echo '<p >Sucessfully logged out</p >';
1172
+ echo '<p >Successfully logged out</p >';
1173
1173
} else {
1174
1174
echo '<p >', implode(', ', $errors), '</p >';
1175
1175
}
@@ -1419,7 +1419,7 @@ SAML 2 Authentication Response class
1419
1419
SAML 2 Logout Request class
1420
1420
1421
1421
* ` OneLogin_Saml2_LogoutRequest ` - Constructs the Logout Request object.
1422
- * ` getRequest ` - Returns the Logout Request defated , base64encoded, unsigned
1422
+ * ` getRequest ` - Returns the Logout Request deflated , base64encoded, unsigned
1423
1423
* ` getID ` - Returns the ID of the Logout Request. (If you have the object you can access to the id attribute)
1424
1424
* ` getNameIdData ` - Gets the NameID Data of the the Logout Request.
1425
1425
* ` getNameId ` - Gets the NameID of the Logout Request.
@@ -1486,7 +1486,7 @@ A class that contains functionality related to the metadata of the SP
1486
1486
1487
1487
* ` builder ` - Generates the metadata of the SP based on the settings.
1488
1488
* ` signmetadata ` - Signs the metadata with the key/cert provided
1489
- * ` addX509KeyDescriptors ` - Adds the x509 descriptors (sign/encriptation ) to
1489
+ * ` addX509KeyDescriptors ` - Adds the x509 descriptors (sign/encryption ) to
1490
1490
the metadata
1491
1491
1492
1492
##### OneLogin_Saml2_Utils - ` Utils.php ` #####
0 commit comments