From 1aec75b76959e8380b31b1e69862cc23e15192f5 Mon Sep 17 00:00:00 2001 From: Liam Morland <liam@openplus.ca> Date: Wed, 6 Mar 2024 13:42:23 -0500 Subject: [PATCH] Issue #3426100: Fix static call to instance method in fillpdf.install --- fillpdf.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fillpdf.install b/fillpdf.install index 37d6566..0d61ca5 100644 --- a/fillpdf.install +++ b/fillpdf.install @@ -29,7 +29,7 @@ function fillpdf_update_8101() { ->setDescription(t('This setting is used as the storage/download method for generated PDFs. The use of public files is more efficient, but does not provide any access control. Changing this setting will require you to migrate associated files and data yourself and is not recommended after you have uploaded a template.')) ->setDisplayOptions('form', [ 'type' => 'radios', - 'options' => FillPdfAdminFormHelper::schemeOptions(), + 'options' => \Drupal::service('fillpdf.admin_form_helper')->schemeOptions(), ]); $edum->installFieldStorageDefinition('scheme', 'fillpdf_form', 'fillpdf_form', $scheme_field); } -- GitLab