From 806662ce6c983e1a5e7612f3262b8faffaf959ab Mon Sep 17 00:00:00 2001 From: Tom Donahue Date: Thu, 29 Jun 2023 09:41:16 -0400 Subject: [PATCH] PHP 8.2 changes per phpcs The parameters on implode were switched around at some point. This fixes the issue. --- src/Controller/FinderController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/FinderController.php b/src/Controller/FinderController.php index d0c37ca..849e0eb 100644 --- a/src/Controller/FinderController.php +++ b/src/Controller/FinderController.php @@ -279,7 +279,7 @@ public function send_email() { "with your criteria already selected: " . \Drupal::request()->getSchemeAndHttpHost() . "/finder?facets=" . - implode($facets,",") . + implode(",",$facets) . "\r\n\r\n" . "If you have any further questions or need more information about " . "Finder services, please contact the helpdesk to set up a consultation, ".