Remove deprecated Form::FormEncType(), use getEncType() instead

This commit is contained in:
Sean Harvey 2012-11-15 11:39:54 +13:00
parent 4e355bdb19
commit 63820130c2

View File

@ -748,14 +748,6 @@ class Form extends RequestHandler {
return $this;
}
/**
* @deprecated 3.0 Please use {@link getEncType}.
*/
public function FormEncType() {
Deprecation::notice('3.0', 'Please use Form->getEncType() instead.');
return $this->getEncType();
}
/**
* Returns the real HTTP method for the form:
* GET, POST, PUT, DELETE or HEAD.