aboutsummaryrefslogtreecommitdiffstats
path: root/includes/api/ApiQueryLogEvents.php
diff options
context:
space:
mode:
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>2022-12-15 23:33:12 +0000
committerGerrit Code Review <gerrit@wikimedia.org>2022-12-15 23:33:12 +0000
commit26281987e9fd8668e76a6d4797289f3676540492 (patch)
treead4794e265bb19d996c1250108b2f059ce754428 /includes/api/ApiQueryLogEvents.php
parent59862c9f8dfa89801a51b7a50fe4dc4ab46c90f3 (diff)
parent07697bb57cb2474d8ff21418703a1389876b1193 (diff)
downloadmediawikicore-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.php2
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' )