]> git.mxchange.org Git - friendica.git/commitdiff
spelling: authentication
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 21:56:14 +0000 (17:56 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 22:59:11 +0000 (18:59 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
CHANGELOG
src/Module/Contact/Redir.php
src/Protocol/ActivityPub/Receiver.php
src/Security/BasicAuth.php
src/Security/ExAuth.php

index 55bdadcc8fa7a73a8c2612b934756b9e1d73b4a2..d65b526e06d734524c92ba4515ea75671a84c6eb 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1378,7 +1378,7 @@ Version 2018.05 (2018-06-01)
     Fixed a bug that made edited mentions and hashtags plaintext [annando]
     Fixed a bug that caused the /display page to receive constandly new updates [annando]
     Fixed wrong version of a dependency preventing the usage of PHP 5.6 [MrPetovan]
-    Fixed a bug in OpenID authentification [Quix0r]
+    Fixed a bug in OpenID authentication [Quix0r]
     Fixed a bug in the item deletion [annando]
     Fixed a bug that prevented public comments from being distributed [annando]
     Fixed a bug that caused empty profile pictures for public contacts [annando]
index 6780197555113672bc0522aaf30fcc0361ab3f45..e1a7b2144842d6b69e47b255c58668f795510b2f 100644 (file)
@@ -171,7 +171,7 @@ class Redir extends \Friendica\BaseModule
 
                        // On a local instance we have to check if the local user has already authenticated
                        // with the local contact. Otherwise, the local user would ask the local contact
-                       // for authentification everytime he/she is visiting a profile page of the local
+                       // for authentication everytime he/she is visiting a profile page of the local
                        // contact.
                        if (($host == $remotehost) && ($this->session->getRemoteContactID($this->session->get('visitor_visiting')) == $this->session->get('visitor_id'))) {
                                // Remote user is already authenticated.
index a18a1092848a366bd878408dc1568d577f007d00..26d5d0d1c69d34fafb9efb7bf9c30a4d2668d896 100644 (file)
@@ -1181,7 +1181,7 @@ class Receiver
                self::switchContacts($receivers, $actor);
 
                // "birdsitelive" is a service that mirrors tweets into the fediverse
-               // These posts can be fetched without authentification, but are not marked as public
+               // These posts can be fetched without authentication, but are not marked as public
                // We treat them as unlisted posts to be able to handle them.
                if (empty($receivers) && $fetch_unlisted && Contact::isPlatform($actor, 'birdsitelive')) {
                        $receivers[0]  = ['uid' => 0, 'type' => self::TARGET_GLOBAL];
index 0c5e91034b61dda08ece20a33e719c3917d4fddb..25da9b831818c3972ed206d3f305208df5e21db2 100644 (file)
@@ -31,7 +31,7 @@ use Friendica\Network\HTTPException\UnauthorizedException;
 use Friendica\Util\DateTimeFormat;
 
 /**
- * Authentification via the basic auth method
+ * Authentication via the basic auth method
  */
 class BasicAuth
 {
index 1e6f28b7f97f248bc6840ca9300510278bf648ff..cc1f03f8cc45ed9bde7b5b7e0aafb92ba86cbb45 100644 (file)
@@ -303,7 +303,7 @@ class ExAuth
 
                // If the hostnames doesn't match or there is some failure, we try to check remotely
                if ($Error && !$this->checkCredentials($aCommand[2], $aCommand[1], $aCommand[3], true)) {
-                       $this->writeLog(LOG_WARNING, 'authentification failed for user ' . $sUser . '@' . $aCommand[2]);
+                       $this->writeLog(LOG_WARNING, 'authentication failed for user ' . $sUser . '@' . $aCommand[2]);
                        fwrite(STDOUT, pack('nn', 2, 0));
                } else {
                        $this->writeLog(LOG_NOTICE, 'authenticated user ' . $sUser . '@' . $aCommand[2]);