From 9686485a1d28310f6bda3a47dee664d4fc5ed027 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 24 Jul 2015 04:12:45 -0700 Subject: [PATCH] =?utf8?q?HTMLUserTextField:=20"else=20if"=20=E2=86=92=20"?= =?utf8?q?elseif"?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I4df7773f79ccb90e1eff5295b94a9f5dd4cd0097 --- includes/htmlform/HTMLUserTextField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/htmlform/HTMLUserTextField.php b/includes/htmlform/HTMLUserTextField.php index 9f7100f5ef..949fefd1e6 100644 --- a/includes/htmlform/HTMLUserTextField.php +++ b/includes/htmlform/HTMLUserTextField.php @@ -28,7 +28,7 @@ class HTMLUserTextField extends HTMLTextField { if ( !$user ) { return $this->msg( 'htmlform-user-not-valid', $value )->parse(); - } else if ( $this->mParams['exists'] && $user->getId() === 0 ) { + } elseif ( $this->mParams['exists'] && $user->getId() === 0 ) { return $this->msg( 'htmlform-user-not-exists', $user->getName() )->parse(); } -- 2.20.1