OutputPage: Fix typo in escaped

Spotted by phan.

Change-Id: Iba372755869c602990ea063f3bfde36e19561adb
This commit is contained in:
Kunal Mehta 2019-03-26 01:12:04 -07:00
parent 7dddd2f7e2
commit 02e95a7d3f

View file

@ -2984,7 +2984,7 @@ class OutputPage extends ContextSource {
*/
public function showFileRenameError( $old, $new ) {
wfDeprecated( __METHOD__, '1.32' );
$this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->escpaed() );
$this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->escaped() );
}
/**