diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2022-12-15 23:33:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2022-12-15 23:33:12 +0000 |
commit | 26281987e9fd8668e76a6d4797289f3676540492 (patch) | |
tree | ad4794e265bb19d996c1250108b2f059ce754428 /includes/api/ApiQueryLogEvents.php | |
parent | 59862c9f8dfa89801a51b7a50fe4dc4ab46c90f3 (diff) | |
parent | 07697bb57cb2474d8ff21418703a1389876b1193 (diff) | |
download | mediawikicore-26281987e9fd8668e76a6d4797289f3676540492.tar.gz mediawikicore-26281987e9fd8668e76a6d4797289f3676540492.zip |
Merge "api: Replace deprecated Linker::formatComment"
Diffstat (limited to 'includes/api/ApiQueryLogEvents.php')
-rw-r--r-- | includes/api/ApiQueryLogEvents.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/api/ApiQueryLogEvents.php b/includes/api/ApiQueryLogEvents.php index 941da972f88e..756d01daa1fa 100644 --- a/includes/api/ApiQueryLogEvents.php +++ b/includes/api/ApiQueryLogEvents.php @@ -420,7 +420,7 @@ class ApiQueryLogEvents extends ApiQueryBase { return 'private'; } if ( $params['prop'] !== null && in_array( 'parsedcomment', $params['prop'] ) ) { - // formatComment() calls wfMessage() among other things + // MediaWiki\CommentFormatter\CommentFormatter::formatItems() calls wfMessage() among other things return 'anon-public-user-private'; } elseif ( LogEventsList::getExcludeClause( $this->getDB(), 'user', $this->getAuthority() ) === LogEventsList::getExcludeClause( $this->getDB(), 'public' ) |