From 3e8a4f3dd5b405f453003b30d4c9705ccaeb3cd5 Mon Sep 17 00:00:00 2001 From: DonutsNL Date: Thu, 22 Jun 2023 09:07:20 +0000 Subject: [PATCH] Removed hardcoded url --- src/Filter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Filter.php b/src/Filter.php index 6d16dfd..c8ed719 100644 --- a/src/Filter.php +++ b/src/Filter.php @@ -100,9 +100,9 @@ public static function PreItemAdd(Ticket $item) : void // Is found ticket closed? if so do nothing. if($reference->fields['status'] != CommonITILObject::CLOSED) { - + // @todo: This link needs some work to generate FQDN if(self::createFollowup($item, $reference) == true) { - Session::addMessageAfterRedirect(__("New ticket was matched to open ticket: $key and was added as a followup"), true, INFO); + Session::addMessageAfterRedirect(__("New ticket was matched to open ticket: $key and was added as a followup"), true, INFO); } } }