API CHANGE: Deprecated FormField->Name() in favour of FormField->getName().

This commit is contained in:
ajshort 2011-05-06 00:48:45 +10:00
parent c954ae5aaa
commit 16a016b9dc

View File

@ -119,10 +119,17 @@ class FormField extends RequestHandler {
*
* @return string
*/
function Name() {
function getName() {
return $this->name;
}
/**
* @deprecated 3.0 Use {@link getName()}.
*/
public function Name() {
return $this->getName();
}
function attrName() {
return $this->name;
}