diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2025-03-03 17:50:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2025-03-03 17:50:45 +0000 |
commit | a5e7e1dbcb55ef2d802050fdc6f5fcbe933206fa (patch) | |
tree | d363625dbef5cb4572d242839a8ca295b602807d /includes | |
parent | fcf4142e36d8ee17527222fcf48083af5a82214b (diff) | |
parent | cddef2f3c3dfd243240789151ce4f9ac5eb219f9 (diff) | |
download | mediawikicore-a5e7e1dbcb55ef2d802050fdc6f5fcbe933206fa.tar.gz mediawikicore-a5e7e1dbcb55ef2d802050fdc6f5fcbe933206fa.zip |
Merge "Fix clause separator in RightsLogFormatter"
Diffstat (limited to 'includes')
-rw-r--r-- | includes/logging/RightsLogFormatter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/logging/RightsLogFormatter.php b/includes/logging/RightsLogFormatter.php index f59722c06780..27d0e00d88bf 100644 --- a/includes/logging/RightsLogFormatter.php +++ b/includes/logging/RightsLogFormatter.php @@ -304,7 +304,7 @@ class RightsLogFormatter extends LogFormatter { } $uiLanguage = $this->context->getLanguage(); - return $uiLanguage->commaList( $formattedChanges ); + return $uiLanguage->semicolonList( $formattedChanges ); } private function formatRightsListExpiryChanged( $groups ) { |