From de3c824fb2f09d7e4d5c0a1fbb56e9e776a28d09 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 6 Nov 2015 09:40:49 +0100 Subject: [PATCH] QuickForm: allow public access to getSentValue --- library/Director/Web/Form/QuickForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Web/Form/QuickForm.php b/library/Director/Web/Form/QuickForm.php index 518c7bf8..1cfcdeb1 100644 --- a/library/Director/Web/Form/QuickForm.php +++ b/library/Director/Web/Form/QuickForm.php @@ -128,7 +128,7 @@ abstract class QuickForm extends Zend_Form $this->getElement(self::ID)->setIgnore(true); } - protected function getSentValue($name, $default = null) + public function getSentValue($name, $default = null) { $request = $this->getRequest(); if ($request->isPost() && $this->hasBeenSent()) {