Skip to content

Commit e4d15e6

Browse files
authored
mispelings
1 parent d4b16c1 commit e4d15e6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -556,11 +556,11 @@ $advancedSettings = array (
556556

557557
// If true, Destination URL should strictly match to the address to
558558
// 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
560560
// will be accepted.
561561
'destinationStrictlyMatches' => false,
562562

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
564564
// AuthNRequest ID provided to the validation method.
565565
'rejectUnsolicitedResponsesWithInResponseTo' => false,
566566

@@ -600,7 +600,7 @@ $advancedSettings = array (
600600
),
601601

602602
// Organization information template, the info in en_US lang is
603-
// recomended, add more if required.
603+
// v, add more if required.
604604
'organization' => array (
605605
'en-US' => array(
606606
'name' => '',
@@ -947,7 +947,7 @@ $auth->processSLO(false, $requestID);
947947
$errors = $auth->getErrors();
948948

949949
if (empty($errors)) {
950-
echo 'Sucessfully logged out';
950+
echo 'Successfully logged out';
951951
} else {
952952
echo implode(', ', $errors);
953953
}
@@ -1154,7 +1154,7 @@ if (isset($_GET['sso'])) { // SSO action. Will send an AuthNRequest to the I
11541154
echo '<p>', implode(', ', $errors), '</p>';
11551155
}
11561156
// This check if the response was
1157-
if (!$auth->isAuthenticated()) { // sucessfully validated and the user
1157+
if (!$auth->isAuthenticated()) { // successfully validated and the user
11581158
echo "<p>Not authenticated</p>"; // data retrieved or not
11591159
exit();
11601160
}
@@ -1169,7 +1169,7 @@ if (isset($_GET['sso'])) { // SSO action. Will send an AuthNRequest to the I
11691169
$auth->processSLO(); // Process the Logout Request & Logout Response
11701170
$errors = $auth->getErrors(); // Retrieves possible validation errors
11711171
if (empty($errors)) {
1172-
echo '<p>Sucessfully logged out</p>';
1172+
echo '<p>Successfully logged out</p>';
11731173
} else {
11741174
echo '<p>', implode(', ', $errors), '</p>';
11751175
}
@@ -1419,7 +1419,7 @@ SAML 2 Authentication Response class
14191419
SAML 2 Logout Request class
14201420

14211421
* `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
14231423
* `getID` - Returns the ID of the Logout Request. (If you have the object you can access to the id attribute)
14241424
* `getNameIdData` - Gets the NameID Data of the the Logout Request.
14251425
* `getNameId` - Gets the NameID of the Logout Request.
@@ -1486,7 +1486,7 @@ A class that contains functionality related to the metadata of the SP
14861486

14871487
* `builder` - Generates the metadata of the SP based on the settings.
14881488
* `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
14901490
the metadata
14911491

14921492
##### OneLogin_Saml2_Utils - `Utils.php` #####

0 commit comments

Comments
 (0)