comment mAction / whitespaces
authorAntoine Musso <hashar@users.mediawiki.org>
Mon, 30 Jan 2012 11:33:16 +0000 (11:33 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Mon, 30 Jan 2012 11:33:16 +0000 (11:33 +0000)
ping r110245

includes/HTMLForm.php

index 3999e67..acc6b23 100644 (file)
@@ -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;
        }
-       
+
 }
 
 /**