From: Amir E. Aharoni Date: Wed, 21 Mar 2012 23:07:06 +0000 (+0200) Subject: A little fix in whitespace and comment spelling. X-Git-Tag: 1.31.0-rc.0~24163 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=90678f30b1cab97ce05698b2723e0125c5c0e0e3;p=lhc%2Fweb%2Fwiklou.git A little fix in whitespace and comment spelling. Change-Id: I23887de1a5ee454037b6346c767e302f2e6f02f7 --- diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index 3b3e1b692d..dccf96766a 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -271,7 +271,7 @@ class HTMLForm extends ContextSource { /** * The here's-one-I-made-earlier option: do the submission if - * posted, or display the form with or without funky valiation + * posted, or display the form with or without funky validation * errors * @return Bool or Status whether submission was successful. */ @@ -279,7 +279,7 @@ class HTMLForm extends ContextSource { $this->prepareForm(); $result = $this->tryAuthorizedSubmit(); - if ( $result === true || ( $result instanceof Status && $result->isGood() ) ){ + if ( $result === true || ( $result instanceof Status && $result->isGood() ) ) { return $result; }