From 9e4448b363a9328a3e5f50d274065e2e72fabcfd Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Tue, 17 Oct 2023 00:54:07 +0300 Subject: [PATCH] Add new line and word-joiner in speaker organisation label --- schedule/parse.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schedule/parse.php b/schedule/parse.php index 766ec17..076567e 100644 --- a/schedule/parse.php +++ b/schedule/parse.php @@ -286,7 +286,8 @@ function parseData($config, $data) { $speaker = $data['speakers'][$uid]; $name = $speaker['first_name'] . ' ' . $speaker['last_name']; - $organisation = empty($speaker['organisation']) ? '' : (' /' . $speaker['organisation'] . '/'); + $organisation = empty($speaker['organisation']) ? '' : + ('
/⁠' . $speaker['organisation'] . '⁠/'); $spk[] = '' . $name . '' . $organisation; }