MediaWiki master
InterwikiLogFormatter.php
Go to the documentation of this file.
1<?php
2
4
15 protected function getMessageParameters() {
16 $params = parent::getMessageParameters();
17 // Needed to pass the URL as a raw parameter, because it contains $1
18 if ( isset( $params[4] ) ) {
19 $params[4] = Message::rawParam( htmlspecialchars( $params[4] ) );
20 }
21 return $params;
22 }
23}
array $params
The job parameters.
LogFormatter for interwiki/* logs.
Implements the default log formatting.
The Message class deals with fetching and processing of interface message into a variety of formats.
Definition Message.php:155