From edf3b646457b34a832848366220bd5ac86a7dc87 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Tue, 28 Sep 2021 11:56:36 +0000 Subject: [PATCH] fixes #13 --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index ab9f9a6..1287edb 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -9,7 +9,7 @@ function translateTracToMarkdown($text, $trac_url, $ticket_id, array $attachment return sprintf( "In [changeset %u](%s):\n%s\n", $match[1], - "{$trac_url}/changset/{$match[1]}", + "{$trac_url}/changeset/{$match[1]}", implode("\n", array_slice(explode("\n", trim($match[2])), 1)) ); }, -- GitLab