Skip to content
Snippets Groups Projects
Commit 228b00ae authored by Kevin Kaland's avatar Kevin Kaland
Browse files

Fix default value.

parent ce9a4c0a
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ function fillpdf_settings($form, &$form_state) {
$form['remote']['fillpdf_remote_endpoint'] = array(
'#type' => 'textfield',
'#title' => t('Server endpoint'),
'#default_value' => variable_get('fillpdf_remote_endpoint', FILLPDF_DEFAULT_SERVLET_URL),
'#default_value' => variable_get('fillpdf_remote_endpoint', 'fillpdf.io/xmlrpc.php'),
'#description' => t('The endpoint for the FillPDF Service instance. This does not usually need to be changed, but you may want to if you have, for example, a <a href="https://fillpdf.io/hosting">private server</a>. Do not include the protocol, as this is determined by the <em>Use HTTPS?</em> setting below.'),
);
$form['remote']['fillpdf_api_key'] = array(
......
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