X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=blobdiff_plain;f=includes%2Fhtmlform%2FHTMLForm.php;h=af1743e07831d1c83bd1c002d343af97c62df7ff;hb=3d54d208bc0dd54baef18b3891ff0faf1d300214;hp=78e7625915ba7b877a1192e1eed0f2b948c09141;hpb=803f3867b7fcbb5fcee405f5c10cfa06cb857bd6;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/HTMLForm.php b/includes/htmlform/HTMLForm.php index 78e7625915..af1743e078 100644 --- a/includes/htmlform/HTMLForm.php +++ b/includes/htmlform/HTMLForm.php @@ -430,17 +430,6 @@ class HTMLForm extends ContextSource { return $this->displayFormat; } - /** - * Test if displayFormat is 'vform' - * @since 1.22 - * @deprecated since 1.25 - * @return bool - */ - public function isVForm() { - wfDeprecated( __METHOD__, '1.25' ); - return false; - } - /** * Get the HTMLFormField subclass for this descriptor. * @@ -504,7 +493,7 @@ class HTMLForm extends ContextSource { /** * Prepare form for submission. * - * @attention When doing method chaining, that should be the very last + * @warning When doing method chaining, that should be the very last * method call before displayForm(). * * @throws MWException @@ -1006,7 +995,7 @@ class HTMLForm extends ContextSource { * Display the form (sending to the context's OutputPage object), with an * appropriate error message or stack of messages, and any validation errors, etc. * - * @attention You should call prepareForm() before calling this function. + * @warning You should call prepareForm() before calling this function. * Moreover, when doing method chaining this should be the very last method * call just after prepareForm(). *