]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Security/OpenID.php
Merge pull request #12597 from annando/activity-distribution
[friendica.git] / src / Module / Security / OpenID.php
index 2675f1fec335af80af3fa9c6911f855c845f5753..b3f869e2f1bf7cccbb40d63fbe1b89a3137ddf85 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -56,9 +56,9 @@ class OpenID extends BaseModule
                                }
 
                                // NOTE: we search both for normalised and non-normalised form of $authid
-                               //       because the normalization step was removed from setting
-                               //       mod/settings.php in 8367cad so it might have left mixed
-                               //       records in the user table
+                               //       because the normalization step was removed from settings
+                               //       in commit 8367cadeeffec4b6792a502847304b17ceba5882, so it might
+                               //       have left mixed records in the user table
                                //
                                $condition = ['blocked' => false, 'account_expired' => false, 'account_removed' => false, 'verified' => true,
                                              'openid' => [$authId, Strings::normaliseOpenID($authId)]];