X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fhtmlform%2FVFormHTMLForm.php;h=7bf5f9e2aec623cd3dbd5e27de6156e253664797;hb=8de958444f1d36ecb95d3a53d96cc1404e95468e;hp=5d9f7a0ba252a4e024775acb05e4a50c0ef71bb0;hpb=69ae945e8d39972a07bea89ddb64bc0189b43ac2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/VFormHTMLForm.php b/includes/htmlform/VFormHTMLForm.php index 5d9f7a0ba2..7bf5f9e2ae 100644 --- a/includes/htmlform/VFormHTMLForm.php +++ b/includes/htmlform/VFormHTMLForm.php @@ -37,11 +37,6 @@ class VFormHTMLForm extends HTMLForm { */ protected $displayFormat = 'vform'; - public function isVForm() { - wfDeprecated( __METHOD__, '1.25' ); - return true; - } - public static function loadInputFromParameters( $fieldname, $descriptor, HTMLForm $parent = null ) { @@ -67,7 +62,7 @@ class VFormHTMLForm extends HTMLForm { protected function getFormAttributes() { $attribs = parent::getFormAttributes(); - $attribs['class'] = [ 'mw-ui-vform', 'mw-ui-container', 'visualClear' ]; + $attribs['class'] = [ 'mw-htmlform', 'mw-ui-vform', 'mw-ui-container' ]; return $attribs; }