SubmitElement: always ignore value

This commit is contained in:
Thomas Gelf 2018-11-06 07:18:34 +01:00
parent fc2e972bcd
commit cf161f480c

View File

@ -44,4 +44,9 @@ class SubmitElement extends InputElement
{
return $this->getButtonLabel() === $this->getValue();
}
public function isIgnored()
{
return true;
}
}