Skip to content
Snippets Groups Projects
Commit 4879356f authored by lkmorlan's avatar lkmorlan Committed by Liam Morland
Browse files

Issue #3042473 by Liam Morland: Remove reference to non-existent variable in fillpdf_settings()

parent b0d43b34
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ function fillpdf_settings($form, &$form_state) {
$form['fillpdf_scheme'] = array(
'#type' => 'radios',
'#title' => t('Template download method'),
'#default_value' => variable_get('fillpdf_scheme', isset($scheme_options['public']) ? 'public' : key($options)),
'#default_value' => variable_get('fillpdf_scheme', isset($scheme_options['public']) ? 'public' : key($scheme_options)),
'#options' => $scheme_options,
'#description' => t('This setting is used as the download method for uploaded templates. 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.'),
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment