From 69339ad183003c61bc77458884d816664896713e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 22 Jun 2012 19:32:40 +0200 Subject: [PATCH] Fix undefined variable from I55939bb5 (eb6df43). Change-Id: I45c51b6b9b1901783526a548f9e7f237a6dfbf7e --- includes/specials/SpecialChangeEmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialChangeEmail.php b/includes/specials/SpecialChangeEmail.php index bd5a443ccf..a1c6fd2a57 100644 --- a/includes/specials/SpecialChangeEmail.php +++ b/includes/specials/SpecialChangeEmail.php @@ -201,7 +201,7 @@ class SpecialChangeEmail extends UnlistedSpecialPage { if ( !$status->isGood() ) { $this->getOutput()->addHTML( '

' . - $this->getOutput()->parseInline( $status->getWikiText( $info ) ) . + $this->getOutput()->parseInline( $status->getWikiText( 'mailerror' ) ) . '

' ); return false; } -- 2.20.1