From f67c4637dceadda923c0b1775bf54cf41953c471 Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@osticket.com> Date: Mon, 24 Oct 2016 22:25:20 +0000 Subject: [PATCH] forms: Refetch answers in request --- include/class.dynamic_forms.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/class.dynamic_forms.php b/include/class.dynamic_forms.php index 074549584..9abe6467a 100644 --- a/include/class.dynamic_forms.php +++ b/include/class.dynamic_forms.php @@ -1265,7 +1265,7 @@ class DynamicFormEntry extends VerySimpleModel { } if ($a->dirty) $dirty++; - $a->save(); + $a->save($refetch); } return $dirty; } @@ -1625,8 +1625,10 @@ class SelectionField extends FormField { } } elseif ($config['typeahead'] && ($entered = $this->getWidget()->getEnteredValue()) - && !in_array($entered, $entry)) + && !in_array($entered, $entry) + && $entered != $entry) { $this->_errors[] = __('Select a value from the list'); + } } } -- GitLab