From 96e0cbb9b66be548955763c97ae77c3f5bb314aa Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 30 Jan 2012 11:33:16 +0000 Subject: [PATCH] comment mAction / whitespaces ping r110245 --- includes/HTMLForm.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index 3999e67e5a..acc6b23f2b 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -107,8 +107,9 @@ class HTMLForm extends ContextSource { protected $mTitle; protected $mMethod = 'post'; - + /** + * Form action URL. false means we will use the URL to set Title * @since 1.19 * @var false|string */ @@ -851,19 +852,19 @@ class HTMLForm extends ContextSource { public function getLegend( $key ) { return wfMsg( "{$this->mMessagePrefix}-$key" ); } - + /** * Set the value for the action attribute of the form. - * When set to false (which is the default state), the set title is used. - * + * When set to false (which is the default state), the set title is used. + * * @since 1.19 - * + * * @param string|false $action */ public function setAction( $action ) { $this->mAction = $action; } - + } /** -- 2.20.1