From: Kunal Mehta Date: Tue, 26 Mar 2019 08:12:04 +0000 (-0700) Subject: OutputPage: Fix typo in escaped X-Git-Tag: 1.34.0-rc.0~2350^2 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=02e95a7d3ffced79601d4e8bd6b6d941cd2799be;p=lhc%2Fweb%2Fwiklou.git OutputPage: Fix typo in escaped Spotted by phan. Change-Id: Iba372755869c602990ea063f3bfde36e19561adb --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index cb90ccf7b7..8a19c51f7a 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -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() ); } /**