From d1f93cea13dd18b598f6ac02910be89327495d7a Mon Sep 17 00:00:00 2001 From: btry Date: Thu, 11 Oct 2018 11:38:13 +0200 Subject: [PATCH] fix(form): export broken due to typo Signed-off-by: btry --- inc/question.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/question.class.php b/inc/question.class.php index 5e84bd374..84b1f8b17 100644 --- a/inc/question.class.php +++ b/inc/question.class.php @@ -1383,7 +1383,7 @@ public function export($remove_uuid = false) { // get question parameters $question['_parameters'] = []; - $this->field = PluginFormcreatorFields::getFieldIntance($this->getField('fieldtype'), $this); + $this->field = PluginFormcreatorFields::getFieldInstance($this->getField('fieldtype'), $this); $parameters = $this->field->getParameters(); foreach ($parameters as $fieldname => $parameter) { $question['_parameters'][$this->fields['fieldtype']][$fieldname] = $parameter->export();