MediaWiki REL1_34
InterwikiLogFormatter.php
Go to the documentation of this file.
1<?php
2
11 protected function getMessageParameters() {
12 $params = parent::getMessageParameters();
13 if ( isset( $params[4] ) ) {
14 $params[4] = Message::rawParam( htmlspecialchars( $params[4] ) );
15 }
16 return $params;
17 }
18}
Needed to pass the URL as a raw parameter, because it contains $1.
Implements the default log formatting.
static rawParam( $raw)
Definition Message.php:1027