From 92799902b62c474f54720fb35135b3937b317358 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 2 Sep 2019 03:44:34 +0200 Subject: [PATCH] Fix var null --- htdocs/adherents/type.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/adherents/type.php b/htdocs/adherents/type.php index 4251ba45ab9..019388aeaab 100644 --- a/htdocs/adherents/type.php +++ b/htdocs/adherents/type.php @@ -822,7 +822,7 @@ if ($rowid > 0) $value = $_POST["options_" . $key]; } } else { - $value = $adht->array_options["options_" . $key]; + $value = $object->array_options["options_" . $key]; } print ''.$label.''; print $extrafields->showInputField($key, $value);