Fix PHPDoc type for instance variables and methods
[lhc/web/wiklou.git] / includes / htmlform / fields / HTMLFormFieldWithButton.php
index b2290ce..03e479b 100644 (file)
@@ -66,10 +66,10 @@ class HTMLFormFieldWithButton extends HTMLFormField {
 
        /**
         * Combines the passed element with a button.
-        * @param String $element Element to combine the button with.
-        * @return String
+        * @param string $element Element to combine the button with.
+        * @return string
         */
        public function getElement( $element ) {
-               return $element . ' ' . $this->getInputHTML( '' );
+               return $element . "\u{00A0}" . $this->getInputHTML( '' );
        }
 }