QuickForm: allow public access to getSentValue
This commit is contained in:
parent
775cf0104e
commit
de3c824fb2
|
@ -128,7 +128,7 @@ abstract class QuickForm extends Zend_Form
|
||||||
$this->getElement(self::ID)->setIgnore(true);
|
$this->getElement(self::ID)->setIgnore(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getSentValue($name, $default = null)
|
public function getSentValue($name, $default = null)
|
||||||
{
|
{
|
||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
if ($request->isPost() && $this->hasBeenSent()) {
|
if ($request->isPost() && $this->hasBeenSent()) {
|
||||||
|
|
Loading…
Reference in New Issue