From 02e95a7d3ffced79601d4e8bd6b6d941cd2799be Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 26 Mar 2019 01:12:04 -0700 Subject: [PATCH] OutputPage: Fix typo in escaped Spotted by phan. Change-Id: Iba372755869c602990ea063f3bfde36e19561adb --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ); } /** -- 2.20.1