From eb396b9cf69e5f62bc9172b14102c75266779af4 Mon Sep 17 00:00:00 2001 From: Kevin Kaland <kevin@wizone.solutions> Date: Wed, 22 Apr 2020 19:18:28 +0200 Subject: [PATCH] Fix link to XML-RPC. Fixing without an issue since it's such a small bug. --- src/Form/FillPdfOverviewForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/FillPdfOverviewForm.php b/src/Form/FillPdfOverviewForm.php index fd81e44..ab3828d 100644 --- a/src/Form/FillPdfOverviewForm.php +++ b/src/Form/FillPdfOverviewForm.php @@ -110,7 +110,7 @@ class FillPdfOverviewForm extends FormBase { // If using FillPDF Service, ensure XML-RPC module is present. if ($config->get('backend') === 'fillpdf_service' && !$this->moduleHandler->moduleExists('xmlrpc')) { - $this->messenger()->addError($this->t('You must install the <a href=":xmlrpc">contributed XML-RPC module</a> in order to use FillPDF Service as your PDF-filling method.', [ + $this->messenger()->addError($this->t('You must install the <a href="@xmlrpc">contributed XML-RPC module</a> in order to use FillPDF Service as your PDF-filling method.', [ '@xmlrpc' => Url::fromUri('https://drupal.org/project/xmlrpc')->toString(), ])); return $form; -- GitLab