diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2021-04-18 18:02:08 -0700 |
---|---|---|
committer | James D. Forrester <jforrester@wikimedia.org> | 2021-05-14 12:40:34 -0700 |
commit | f2f9345e39d4169d387c198eececb112761b338a (patch) | |
tree | f75761bb45fd4be7a08126ae82c562fc7a422c57 /includes/auth/AuthManager.php | |
parent | 0157586f9b311751b3ebb06e41ddfd2afd254ebe (diff) | |
download | mediawikicore-f2f9345e39d4169d387c198eececb112761b338a.tar.gz mediawikicore-f2f9345e39d4169d387c198eececb112761b338a.zip |
Replace uses of DB_MASTER with DB_PRIMARY in documentation and local variables
This is just a start.
Bug: T254646
Change-Id: I9213aad4660e27afe7ff9e5d2e730cbf03911068
Diffstat (limited to 'includes/auth/AuthManager.php')
-rw-r--r-- | includes/auth/AuthManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/auth/AuthManager.php b/includes/auth/AuthManager.php index 4a1026435683..252ea1172c72 100644 --- a/includes/auth/AuthManager.php +++ b/includes/auth/AuthManager.php @@ -1604,7 +1604,7 @@ class AuthManager implements LoggerAwareInterface { $localId = User::idFromName( $username ); $flags = User::READ_NORMAL; - // Fetch the user ID from the master, so that we don't try to create the user + // Fetch the user ID from the primary, so that we don't try to create the user // when they already exist, due to replication lag // @codeCoverageIgnoreStart if ( |